Skip to content

Commit

Permalink
Reorganise tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Sep 20, 2023
1 parent 37d2503 commit 48a9e84
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ using SafeTestsets
@safetestset "Extrapolation Methods " begin include("extrapolation_tests.jl") end
@safetestset "Solution Tests " begin include("solutions/solutions_tests.jl") end
@safetestset "Initial Guesses " begin include("integrators/initial_guess_tests.jl") end

@safetestset "Euler Integrators " begin include("integrators/euler_tests.jl") end
@safetestset "Runge-Kutta Integrators " begin include("integrators/rk_integrators_tests.jl") end
@safetestset "Runge-Kutta Integrators for Implicit Equations " begin include("integrators/rk_implicit_integrators_tests.jl") end
@safetestset "Splitting Integrators " begin include("integrators/splitting_integrators_tests.jl") end

@safetestset "Variational Integrators " begin include("integrators/variational_integrators_tests.jl") end
@safetestset "Degenerate Variational Integrators " begin include("integrators/dvi_integrators_tests.jl") end
@safetestset "Galerkin Variational Integrators " begin include("integrators/galerkin_integrators_tests.jl") end
Expand All @@ -19,8 +21,7 @@ using SafeTestsets
@safetestset "Ensemble Integrator Tests " begin include("integrators/ensemble_integrators_tests.jl") end

@safetestset "Method Tests " begin include("methods/methods_tests.jl") end
@safetestset "Simulation Tests " begin include("simulations/simulations_tests.jl") end

@safetestset "SPARK Integrators " begin include("spark/spark_integrators_tests.jl") end
@safetestset "SPARK Tableau Tests " begin include("spark/spark_tableaus_tests.jl") end

@safetestset "Simulation Tests " begin include("simulations/simulations_tests.jl") end

0 comments on commit 48a9e84

Please sign in to comment.