From cebb5d6b0575fe211fedf9b65f39b6a0d4ffbcd2 Mon Sep 17 00:00:00 2001 From: vyudu Date: Thu, 19 Sep 2024 14:09:23 -0400 Subject: [PATCH] up --- test/runtests.jl | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 1a44c8d7..14fb692f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,22 +2,22 @@ using JumpProcesses, DiffEqBase, SafeTestsets @time begin - # @time @safetestset "Constant Rate Tests" begin include("constant_rate.jl") end - # @time @safetestset "Variable Rate Tests" begin include("variable_rate.jl") end - # @time @safetestset "ExtendedJumpArray Tests" begin include("extended_jump_array.jl") end - # @time @safetestset "FunctionWrapper Tests" begin include("functionwrappers.jl") end - # @time @safetestset "Monte Carlo Tests" begin include("monte_carlo_test.jl") end - # @time @safetestset "Split Coupled Tests" begin include("splitcoupled.jl") end - # @time @safetestset "SSA Tests" begin include("ssa_tests.jl") end - # @time @safetestset "Tau Leaping Tests" begin include("regular_jumps.jl") end - # @time @safetestset "Simple SSA Callback Test" begin include("ssa_callback_test.jl") end - # @time @safetestset "SIR Discrete Callback Test" begin include("sir_model.jl") end - # @time @safetestset "Linear Reaction SSA Test" begin include("linearreaction_test.jl") end - # @time @safetestset "Mass Action Jump Tests; Gene Expr Model" begin include("geneexpr_test.jl") end - # @time @safetestset "Mass Action Jump Tests; Nonlinear Rx Model" begin include("bimolerx_test.jl") end - # @time @safetestset "Mass Action Jump Tests; Special Cases" begin include("degenerate_rx_cases.jl") end - # # @time @safetestset "Direct allocations test" begin include("allocations.jl") end - # @time @safetestset "Bracketing Tests" begin include("bracketing.jl") end + @time @safetestset "Constant Rate Tests" begin include("constant_rate.jl") end + @time @safetestset "Variable Rate Tests" begin include("variable_rate.jl") end + @time @safetestset "ExtendedJumpArray Tests" begin include("extended_jump_array.jl") end + @time @safetestset "FunctionWrapper Tests" begin include("functionwrappers.jl") end + @time @safetestset "Monte Carlo Tests" begin include("monte_carlo_test.jl") end + @time @safetestset "Split Coupled Tests" begin include("splitcoupled.jl") end + @time @safetestset "SSA Tests" begin include("ssa_tests.jl") end + @time @safetestset "Tau Leaping Tests" begin include("regular_jumps.jl") end + @time @safetestset "Simple SSA Callback Test" begin include("ssa_callback_test.jl") end + @time @safetestset "SIR Discrete Callback Test" begin include("sir_model.jl") end + @time @safetestset "Linear Reaction SSA Test" begin include("linearreaction_test.jl") end + @time @safetestset "Mass Action Jump Tests; Gene Expr Model" begin include("geneexpr_test.jl") end + @time @safetestset "Mass Action Jump Tests; Nonlinear Rx Model" begin include("bimolerx_test.jl") end + @time @safetestset "Mass Action Jump Tests; Special Cases" begin include("degenerate_rx_cases.jl") end + # @time @safetestset "Direct allocations test" begin include("allocations.jl") end + @time @safetestset "Bracketing Tests" begin include("bracketing.jl") end @time @safetestset "Composition-Rejection Table Tests" begin include("table_test.jl") end @time @safetestset "Extinction test" begin include("extinction_test.jl") end @time @safetestset "Saveat Regression test" begin include("saveat_regression.jl") end