]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/TestAll.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / TestAll.java
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/TestAll.java b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/TestAll.java
new file mode 100644 (file)
index 0000000..38d4ae3
--- /dev/null
@@ -0,0 +1,19 @@
+package org.simantics.scl.compiler.tests;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+import org.simantics.scl.compiler.tests.unit.TestSubSolver;
+
+@RunWith(Suite.class)
+@SuiteClasses({
+    RegressionTests.class,
+    
+    ActiveTests.class, 
+    UnimplementedTests.class,
+    ScriptTests.class,
+    
+    TestSubSolver.class
+})
+public class TestAll {
+}