From 5f5a75bafa5c0bbb93a905577451ab243edd256e Mon Sep 17 00:00:00 2001 From: Dave Date: Sun, 5 Jul 2015 22:14:49 +0200 Subject: [PATCH] test suite testing NoDashBasicTests and NoRoutineTest --- src/nodash/test/NoSystemTest.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/nodash/test/NoSystemTest.java diff --git a/src/nodash/test/NoSystemTest.java b/src/nodash/test/NoSystemTest.java new file mode 100644 index 0000000..1d8cc3d --- /dev/null +++ b/src/nodash/test/NoSystemTest.java @@ -0,0 +1,13 @@ +package nodash.test; + +import nodash.test.functional.NoRoutineTest; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; +import org.junit.runners.Suite.SuiteClasses; + +@RunWith(Suite.class) +@SuiteClasses({NoDashBasicTests.class, NoRoutineTest.class}) +public class NoSystemTest { + +}