|
32 | 32 | @safetestset "Dynamic Quantities Test" include("dq_units.jl") |
33 | 33 | @safetestset "Unitful Quantities Test" include("units.jl") |
34 | 34 | @safetestset "Mass Matrix Test" include("mass_matrix.jl") |
| 35 | + @safetestset "SteadyStateSystem Test" include("steadystatesystems.jl") |
| 36 | + @safetestset "SDESystem Test" include("sdesystem.jl") |
| 37 | + @safetestset "DDESystem Test" include("dde.jl") |
| 38 | + @safetestset "NonlinearSystem Test" include("nonlinearsystem.jl") |
35 | 39 | @safetestset "InitializationSystem Test" include("initializationsystem.jl") |
36 | 40 | @safetestset "Guess Propagation" include("guess_propagation.jl") |
37 | 41 | @safetestset "Hierarchical Initialization Equations" include("hierarchical_initialization_eqs.jl") |
| 42 | + @safetestset "PDE Construction Test" include("pde.jl") |
| 43 | + @safetestset "JumpSystem Test" include("jumpsystem.jl") |
| 44 | + @safetestset "Constraints Test" include("constraints.jl") |
38 | 45 | @safetestset "Reduction Test" include("reduction.jl") |
39 | 46 | @safetestset "Split Parameters Test" include("split_parameters.jl") |
40 | 47 | @safetestset "StaticArrays Test" include("static_arrays.jl") |
41 | 48 | @safetestset "Components Test" include("components.jl") |
42 | 49 | @safetestset "Model Parsing Test" include("model_parsing.jl") |
| 50 | + @safetestset "print_tree" include("print_tree.jl") |
43 | 51 | @safetestset "Error Handling" include("error_handling.jl") |
44 | 52 | @safetestset "StructuralTransformations" include("structural_transformation/runtests.jl") |
45 | 53 | @safetestset "State Selection Test" include("state_selection.jl") |
46 | 54 | @safetestset "Symbolic Event Test" include("symbolic_events.jl") |
47 | 55 | @safetestset "Stream Connect Test" include("stream_connectors.jl") |
48 | 56 | @safetestset "Domain Connect Test" include("domain_connectors.jl") |
49 | 57 | @safetestset "Lowering Integration Test" include("lowering_solving.jl") |
| 58 | + @safetestset "Test Big System Usage" include("bigsystem.jl") |
50 | 59 | @safetestset "Dependency Graph Test" include("dep_graphs.jl") |
51 | 60 | @safetestset "Function Registration Test" include("function_registration.jl") |
52 | 61 | @safetestset "Precompiled Modules Test" include("precompile_test.jl") |
| 62 | + @safetestset "Variable Utils Test" include("variable_utils.jl") |
| 63 | + @safetestset "Variable Metadata Test" include("test_variable_metadata.jl") |
53 | 64 | @safetestset "DAE Jacobians Test" include("dae_jacobian.jl") |
54 | 65 | @safetestset "Jacobian Sparsity" include("jacobiansparsity.jl") |
55 | 66 | @safetestset "Modelingtoolkitize Test" include("modelingtoolkitize.jl") |
| 67 | + @safetestset "OptimizationSystem Test" include("optimizationsystem.jl") |
56 | 68 | @safetestset "FuncAffect Test" include("funcaffect.jl") |
57 | 69 | @safetestset "Constants Test" include("constants.jl") |
58 | 70 | @safetestset "Parameter Dependency Test" include("parameter_dependencies.jl") |
59 | 71 | @safetestset "Generate Custom Function Test" include("generate_custom_function.jl") |
60 | 72 | @safetestset "Initial Values Test" include("initial_values.jl") |
| 73 | + @safetestset "Discrete System" include("discrete_system.jl") |
61 | 74 | @safetestset "Equation Type Accessors Test" include("equation_type_accessors.jl") |
62 | 75 | @safetestset "Equations with complex values" include("complex.jl") |
63 | 76 | end |
64 | 77 | end |
65 | 78 |
|
66 | | - if GROUP == "All" || GROUP == "InterfaceII" |
67 | | - @testset "InterfaceII" begin |
68 | | - @safetestset "Variable Utils Test" include("variable_utils.jl") |
69 | | - @safetestset "Variable Metadata Test" include("test_variable_metadata.jl") |
70 | | - @safetestset "OptimizationSystem Test" include("optimizationsystem.jl") |
71 | | - @safetestset "Discrete System" include("discrete_system.jl") |
72 | | - @safetestset "SteadyStateSystem Test" include("steadystatesystems.jl") |
73 | | - @safetestset "SDESystem Test" include("sdesystem.jl") |
74 | | - @safetestset "DDESystem Test" include("dde.jl") |
75 | | - @safetestset "NonlinearSystem Test" include("nonlinearsystem.jl") |
76 | | - @safetestset "PDE Construction Test" include("pde.jl") |
77 | | - @safetestset "JumpSystem Test" include("jumpsystem.jl") |
78 | | - @safetestset "print_tree" include("print_tree.jl") |
79 | | - @safetestset "Constraints Test" include("constraints.jl") |
80 | | - end |
81 | | - end |
82 | | - |
83 | | - if GROUP == "All" || GROUP == "SymbolicIndexingInterface" |
| 79 | + if GROUP == "All" || GROUP == "InterfaceI" || GROUP == "SymbolicIndexingInterface" |
84 | 80 | @safetestset "SymbolicIndexingInterface test" include("symbolic_indexing_interface.jl") |
85 | 81 | @safetestset "SciML Problem Input Test" include("sciml_problem_inputs.jl") |
86 | 82 | @safetestset "MTKParameters Test" include("mtkparameters.jl") |
87 | 83 | end |
88 | 84 |
|
89 | | - if GROUP == "All" || GROUP == "Extended" |
90 | | - @safetestset "Test Big System Usage" include("bigsystem.jl") |
| 85 | + if GROUP == "All" || GROUP == "InterfaceII" |
91 | 86 | println("C compilation test requires gcc available in the path!") |
92 | 87 | @safetestset "C Compilation Test" include("ccompile.jl") |
93 | 88 | @testset "Distributed Test" include("distributed.jl") |
|
0 commit comments