1 16 17 package test.MSGDispatch; 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 public PackageTests(String name) { 30 super(name); 31 } 32 33 public static Test suite() throws Exception { 34 TestSuite suite = new TestSuite(); 35 36 suite.addTestSuite(TestMessageService.class); 37 38 return suite; 39 } 40 } | Popular Tags |