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