diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 0000000..78ed268 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,12 @@ +tests = ["compare.jl", + "crashes.jl", + "examples.jl", + "issues.jl", + "plot.jl"] + +println("Running tests:") + +for curtest in tests + println(" Test: $(curtest)") + include(curtest) +end