1 16 17 package test.dynamic; 18 19 import junit.framework.Test; 20 import junit.framework.TestCase; 21 import junit.framework.TestSuite; 22 23 28 public class PackageTests extends TestCase { 29 30 public PackageTests(String name) { 31 super(name); 32 } 33 34 public static Test suite() throws Exception { 35 TestSuite suite = new TestSuite(); 36 37 41 45 return suite; 46 } 47 } 48 | Popular Tags |