From 1cb1f98913c9f8d2a7ff57ae28339edc1b28189f Mon Sep 17 00:00:00 2001 From: Iain Dunning Date: Wed, 4 Jun 2014 12:59:36 -0400 Subject: [PATCH] Create runtests.jl --- test/runtests.jl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/runtests.jl 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