added a test suite to run all the test cases (cheating, using java :)

This commit is contained in:
James Strachan
2011-12-22 08:37:37 +00:00
parent a50067f6cf
commit 060719e71b
@@ -0,0 +1,11 @@
package test.collections;
import junit.framework.TestSuite;
/**
*/
public class TestAll {
public static TestSuite suite() {
return new TestSuite(CollectionTest.class, SetTest.class, ListTest.class, IoTest.class, MapTest.class);
}
}