File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -933,7 +933,7 @@ function make_reaction(ex::Expr)
933
933
# Handle interpolation of variables in the input.
934
934
ex = esc_dollars! (ex)
935
935
936
- # Parses reactions. Extracts species and paraemters within it.
936
+ # Parses reactions. Extracts species and parameters within it.
937
937
reaction = get_reaction (ex)
938
938
species, parameters = extract_sps_and_ps ([reaction], [])
939
939
Original file line number Diff line number Diff line change 15
15
# ## Run Tests ###
16
16
@time begin
17
17
if GROUP == " All" || GROUP == " Core"
18
+ # Tests the `ReactionSystem` structure and its properties.
19
+ @time @safetestset " Reaction Structure" begin include (" reactionsystem_core/reaction.jl" ) end
20
+ @time @safetestset " ReactionSystem Structure" begin include (" reactionsystem_core/reactionsystem.jl" ) end
21
+ @time @safetestset " Higher Order Reactions" begin include (" reactionsystem_core/higher_order_reactions.jl" ) end
22
+ @time @safetestset " Symbolic Stoichiometry" begin include (" reactionsystem_core/symbolic_stoichiometry.jl" ) end
23
+ @time @safetestset " Parameter Type Designation" begin include (" reactionsystem_core/parameter_type_designation.jl" ) end
24
+ @time @safetestset " Custom CRN Functions" begin include (" reactionsystem_core/custom_crn_functions.jl" ) end
25
+ @time @safetestset " Coupled CRN/Equation Systems" begin include (" reactionsystem_core/coupled_equation_crn_systems.jl" ) end
26
+ @time @safetestset " Events" begin include (" reactionsystem_core/events.jl" ) end
27
+
28
+ # Tests model creation via the @reaction_network DSL.
29
+ @time @safetestset " DSL Basic Model Construction" begin include (" dsl/dsl_basic_model_construction.jl" ) end
30
+ @time @safetestset " DSL Advanced Model Construction" begin include (" dsl/dsl_advanced_model_construction.jl" ) end
18
31
@time @safetestset " DSL Options" begin include (" dsl/dsl_options.jl" ) end
19
32
20
33
# Tests compositional and hierarchical modelling.
You can’t perform that action at this time.
0 commit comments