1 package org.columba.core.util; 17 18 import junit.framework.Test; 19 import junit.framework.TestSuite; 20 21 22 30 public class AllTests { 31 public static Test suite() { 32 TestSuite suite = new TestSuite("Test for org.columba.core.util"); 33 34 suite.addTest(new TestSuite(ListToolsTest.class)); 36 suite.addTest(new TestSuite(BooleanCompressorTest.class)); 37 38 return suite; 40 } 41 } 42 | Popular Tags |