1 22 23 package tests.sosnoski.util.hashset; 24 25 import junit.framework.*; 26 27 public class HashSetSuite extends TestCase 28 { 29 public HashSetSuite(String name) { 30 super(name); 31 } 32 33 public static Test suite() { 34 TestSuite suite = new TestSuite(); 35 suite.addTest(DoubleHashSetTest.suite()); 36 suite.addTest(IntHashSetTest.suite()); 37 suite.addTest(StringHashSetTest.suite()); 38 suite.addTest(ObjectHashSetTest.suite()); 39 return suite; 40 } 41 42 public static void main(String [] args) { 43 String [] names = { HashSetSuite.class.getName() }; 44 junit.textui.TestRunner.main(names); 45 } 46 } 47 | Popular Tags |