]> gerrit.simantics Code Review - simantics/platform.git/blob - 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
1 package org.simantics.scl.compiler.tests;
2
3 import org.junit.runner.RunWith;
4 import org.junit.runners.Suite;
5 import org.junit.runners.Suite.SuiteClasses;
6
7 @RunWith(Suite.class)
8 @SuiteClasses({
9     RegressionTestsWithoutPrelude.class, 
10     RegressionTestsWithPrelude.class,
11     TestExpressionEvaluator.class,
12     TestCommandSession.class
13 })
14 public class RegressionTests {
15 }