From 5d45e6834b236462e56a618e21004963f1fd1645 Mon Sep 17 00:00:00 2001 From: Torkel Date: Thu, 9 Nov 2023 14:08:20 -0500 Subject: [PATCH] up --- test/extensions/structural_identifiability.jl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/extensions/structural_identifiability.jl b/test/extensions/structural_identifiability.jl index 764a0046f9..22d57903d2 100644 --- a/test/extensions/structural_identifiability.jl +++ b/test/extensions/structural_identifiability.jl @@ -49,9 +49,9 @@ let ifs_3 = find_identifiable_functions(goodwind_oscillator_si) # Check outputs. - sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) - sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) - length(ifs_1) == length(ifs_2) == length(ifs_3) + @test sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) + @test sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) + @test length(ifs_1) == length(ifs_2) == length(ifs_3) end # Tests on a made-up reaction network with mix of identifiable and non-identifiable components. @@ -92,9 +92,9 @@ let ifs_3 = find_identifiable_functions(rs_si) # Check outputs. - sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) - sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) - length(ifs_1) == length(ifs_2) == length(ifs_3) + @test sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) + @test sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) + @test length(ifs_1) == length(ifs_2) == length(ifs_3) end # Tests on a made-up reaction network with mix of identifiable and non-identifiable components. @@ -141,9 +141,9 @@ let ifs_3 = find_identifiable_functions(rs_si) # Check outputs. - sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) - sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) - length(ifs_1) == length(ifs_2) == length(ifs_3) + @test sym_dict(gi_1) == sym_dict(gi_2) == sym_dict(gi_3) + @test sym_dict(li_1) == sym_dict(li_2) == sym_dict(li_3) + @test length(ifs_1) == length(ifs_2) == length(ifs_3) end # Tests that various inputs types work.