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