Skip to content

Commit 2a66643

Browse files
committed
Clean runtests.jl
1 parent f2bdb40 commit 2a66643

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

test/runtests.jl

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
using Mimi
22
using Base.Test
33

4+
@testset "Mimi" begin
45

5-
tests = ["main",
6-
"references",
7-
"units",
8-
"model_structure",
9-
"tools",
10-
"parameter_labels",
11-
"marginal_models",
12-
"adder",
13-
"getindex",
14-
"num_components",
15-
"components_ordering",
16-
"variables_model_instance",
17-
"getdataframe"
18-
]
6+
include("test_main.jl")
7+
include("test_references.jl")
8+
include("test_units.jl")
9+
include("test_model_structure.jl")
10+
include("test_tools.jl")
11+
include("test_parameter_labels.jl")
12+
include("test_marginal_models.jl")
13+
include("test_adder.jl")
14+
include("test_getindex.jl")
15+
include("test_num_components.jl")
16+
include("test_components_ordering.jl")
17+
include("test_variables_model_instance.jl")
18+
include("test_getdataframe.jl")
1919

20-
for t in tests
21-
fp = joinpath("test_$t.jl")
22-
println("$fp ...")
23-
include(fp)
2420
end

0 commit comments

Comments
 (0)