Skip to content

Commit

Permalink
Added test suite for all unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Apr 8, 2014
1 parent ae9cb72 commit 1693ede
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions test-jvm/ceylon/language/LanguageUnitTestSuite.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package ceylon.language;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

import com.redhat.ceylon.compiler.java.ArrayBuilderTest;
import com.redhat.ceylon.compiler.java.TypeDescriptorTest;

@RunWith(Suite.class)
@SuiteClasses({
ArraySequenceTest.class,
FloatTest.class,
IntegerTest.class,
SequenceBuilderTest.class,
ArrayBuilderTest.class,
TypeDescriptorTest.class,
})
public class LanguageUnitTestSuite {

}

0 comments on commit 1693ede

Please sign in to comment.