1 16 package test.holders; 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 22 public class PackageTests extends TestCase { 23 public PackageTests(String name) { 24 super(name); 25 } 26 27 public static Test suite() throws Exception { 28 TestSuite suite = new TestSuite(); 29 suite.addTestSuite(TestBook.class); 30 return suite; 31 } 32 } 33 | Popular Tags |