This commit is contained in:
Alex Tkachman
2011-12-22 14:58:25 +02:00
parent 3a3af75c3d
commit cf17beab8b
2 changed files with 58 additions and 1 deletions
+3 -1
View File
@@ -6,6 +6,8 @@ import junit.framework.TestSuite;
*/
public class TestAll {
public static TestSuite suite() {
return new TestSuite(CollectionTest.class, IoTest.class, ListTest.class, MapTest.class, SetTest.class);
TestSuite suite = new TestSuite(CollectionTest.class, IoTest.class, ListTest.class, MapTest.class, SetTest.class);
suite.addTest(testDslExample.namespace.getSuite());
return suite;
}
}