|
1 | 1 | using SafeTestsets, Test
|
2 | 2 |
|
3 |
| -@safetestset "Linear Algebra Test" begin include("linalg.jl") end |
4 |
| -@safetestset "AbstractSystem Test" begin include("abstractsystem.jl") end |
5 |
| -@safetestset "Variable Scope Tests" begin include("variable_scope.jl") end |
6 |
| -@safetestset "Symbolic Parameters Test" begin include("symbolic_parameters.jl") end |
7 |
| -@safetestset "Parsing Test" begin include("variable_parsing.jl") end |
8 |
| -@safetestset "Simplify Test" begin include("simplify.jl") end |
9 |
| -@safetestset "Direct Usage Test" begin include("direct.jl") end |
10 |
| -@safetestset "System Linearity Test" begin include("linearity.jl") end |
11 |
| -@safetestset "Linearization Tests" begin include("linearize.jl") end |
12 |
| -@safetestset "Input Output Test" begin include("input_output_handling.jl") end |
13 |
| -@safetestset "Clock Test" begin include("clock.jl") end |
14 |
| -@safetestset "DiscreteSystem Test" begin include("discretesystem.jl") end |
15 |
| -@safetestset "ODESystem Test" begin include("odesystem.jl") end |
16 |
| -@safetestset "Unitful Quantities Test" begin include("units.jl") end |
17 |
| -@safetestset "LabelledArrays Test" begin include("labelledarrays.jl") end |
18 |
| -@safetestset "Mass Matrix Test" begin include("mass_matrix.jl") end |
19 |
| -@safetestset "SteadyStateSystem Test" begin include("steadystatesystems.jl") end |
20 |
| -@safetestset "SDESystem Test" begin include("sdesystem.jl") end |
21 |
| -@safetestset "NonlinearSystem Test" begin include("nonlinearsystem.jl") end |
22 |
| -@safetestset "PDE Construction Test" begin include("pde.jl") end |
23 |
| -@safetestset "JumpSystem Test" begin include("jumpsystem.jl") end |
24 |
| -@safetestset "Constraints Test" begin include("constraints.jl") end |
25 |
| -@safetestset "Reduction Test" begin include("reduction.jl") end |
26 |
| -@safetestset "ODAEProblem Test" begin include("odaeproblem.jl") end |
27 |
| -@safetestset "Components Test" begin include("components.jl") end |
28 |
| -@safetestset "Model Parsing Test" begin include("model_parsing.jl") end |
29 |
| -@safetestset "print_tree" begin include("print_tree.jl") end |
30 |
| -@safetestset "Error Handling" begin include("error_handling.jl") end |
31 |
| -@safetestset "StructuralTransformations" begin include("structural_transformation/runtests.jl") end |
32 |
| -@safetestset "State Selection Test" begin include("state_selection.jl") end |
33 |
| -@safetestset "Symbolic Event Test" begin include("symbolic_events.jl") end |
34 |
| -@safetestset "Stream Connnect Test" begin include("stream_connectors.jl") end |
35 |
| -@safetestset "Lowering Integration Test" begin include("lowering_solving.jl") end |
36 |
| -@safetestset "Test Big System Usage" begin include("bigsystem.jl") end |
37 |
| -@safetestset "Depdendency Graph Test" begin include("dep_graphs.jl") end |
38 |
| -@safetestset "Function Registration Test" begin include("function_registration.jl") end |
39 |
| -@safetestset "Precompiled Modules Test" begin include("precompile_test.jl") end |
40 |
| -@testset "Distributed Test" begin include("distributed.jl") end |
41 |
| -@safetestset "Variable Utils Test" begin include("variable_utils.jl") end |
42 |
| -@safetestset "Variable Metadata Test" begin include("test_variable_metadata.jl") end |
43 |
| -@safetestset "DAE Jacobians Test" begin include("dae_jacobian.jl") end |
44 |
| -@safetestset "Jacobian Sparsity" begin include("jacobiansparsity.jl") end |
| 3 | +@safetestset "Linear Algebra Test" include("linalg.jl") |
| 4 | +@safetestset "AbstractSystem Test" include("abstractsystem.jl") |
| 5 | +@safetestset "Variable Scope Tests" include("variable_scope.jl") |
| 6 | +@safetestset "Symbolic Parameters Test" include("symbolic_parameters.jl") |
| 7 | +@safetestset "Parsing Test" include("variable_parsing.jl") |
| 8 | +@safetestset "Simplify Test" include("simplify.jl") |
| 9 | +@safetestset "Direct Usage Test" include("direct.jl") |
| 10 | +@safetestset "System Linearity Test" include("linearity.jl") |
| 11 | +@safetestset "Linearization Tests" include("linearize.jl") |
| 12 | +@safetestset "Input Output Test" include("input_output_handling.jl") |
| 13 | +@safetestset "Clock Test" include("clock.jl") |
| 14 | +@safetestset "DiscreteSystem Test" include("discretesystem.jl") |
| 15 | +@safetestset "ODESystem Test" include("odesystem.jl") |
| 16 | +@safetestset "Unitful Quantities Test" include("units.jl") |
| 17 | +@safetestset "LabelledArrays Test" include("labelledarrays.jl") |
| 18 | +@safetestset "Mass Matrix Test" include("mass_matrix.jl") |
| 19 | +@safetestset "SteadyStateSystem Test" include("steadystatesystems.jl") |
| 20 | +@safetestset "SDESystem Test" include("sdesystem.jl") |
| 21 | +@safetestset "NonlinearSystem Test" include("nonlinearsystem.jl") |
| 22 | +@safetestset "PDE Construction Test" include("pde.jl") |
| 23 | +@safetestset "JumpSystem Test" include("jumpsystem.jl") |
| 24 | +@safetestset "Constraints Test" include("constraints.jl") |
| 25 | +@safetestset "Reduction Test" include("reduction.jl") |
| 26 | +@safetestset "ODAEProblem Test" include("odaeproblem.jl") |
| 27 | +@safetestset "Components Test" include("components.jl") |
| 28 | +@safetestset "Model Parsing Test" include("model_parsing.jl") |
| 29 | +@safetestset "print_tree" include("print_tree.jl") |
| 30 | +@safetestset "Error Handling" include("error_handling.jl") |
| 31 | +@safetestset "StructuralTransformations" include("structural_transformation/runtests.jl") |
| 32 | +@safetestset "State Selection Test" include("state_selection.jl") |
| 33 | +@safetestset "Symbolic Event Test" include("symbolic_events.jl") |
| 34 | +@safetestset "Stream Connnect Test" include("stream_connectors.jl") |
| 35 | +@safetestset "Lowering Integration Test" include("lowering_solving.jl") |
| 36 | +@safetestset "Test Big System Usage" include("bigsystem.jl") |
| 37 | +@safetestset "Depdendency Graph Test" include("dep_graphs.jl") |
| 38 | +@safetestset "Function Registration Test" include("function_registration.jl") |
| 39 | +@safetestset "Precompiled Modules Test" include("precompile_test.jl") |
| 40 | +@testset "Distributed Test" include("distributed.jl") |
| 41 | +@safetestset "Variable Utils Test" include("variable_utils.jl") |
| 42 | +@safetestset "Variable Metadata Test" include("test_variable_metadata.jl") |
| 43 | +@safetestset "DAE Jacobians Test" include("dae_jacobian.jl") |
| 44 | +@safetestset "Jacobian Sparsity" include("jacobiansparsity.jl") |
45 | 45 | println("Last test requires gcc available in the path!")
|
46 |
| -@safetestset "C Compilation Test" begin include("ccompile.jl") end |
47 |
| -@testset "Serialization" begin include("serialization.jl") end |
48 |
| -@safetestset "Modelingtoolkitize Test" begin include("modelingtoolkitize.jl") end |
49 |
| -@safetestset "OptimizationSystem Test" begin include("optimizationsystem.jl") end |
50 |
| -@safetestset "FuncAffect Test" begin include("funcaffect.jl") end |
51 |
| -@safetestset "Constants Test" begin include("constants.jl") end |
| 46 | +@safetestset "C Compilation Test" include("ccompile.jl") |
| 47 | +@testset "Serialization" include("serialization.jl") |
| 48 | +@safetestset "Modelingtoolkitize Test" include("modelingtoolkitize.jl") |
| 49 | +@safetestset "OptimizationSystem Test" include("optimizationsystem.jl") |
| 50 | +@safetestset "FuncAffect Test" include("funcaffect.jl") |
| 51 | +@safetestset "Constants Test" include("constants.jl") |
52 | 52 | # Reference tests go Last
|
53 |
| -@safetestset "Latexify recipes Test" begin include("latexify.jl") end |
| 53 | +@safetestset "Latexify recipes Test" include("latexify.jl") |
0 commit comments