]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/RegressionTests.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / RegressionTests.java
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/RegressionTests.java b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/RegressionTests.java
new file mode 100644 (file)
index 0000000..17a4f7e
--- /dev/null
@@ -0,0 +1,15 @@
+package org.simantics.scl.compiler.tests;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class)
+@SuiteClasses({
+    RegressionTestsWithoutPrelude.class, 
+    RegressionTestsWithPrelude.class,
+    TestExpressionEvaluator.class,
+    TestCommandSession.class
+})
+public class RegressionTests {
+}