1 package test.outparams; 2 3 import junit.framework.Test; 4 import junit.framework.TestCase; 5 import junit.framework.TestSuite; 6 7 10 public class PackageTests extends TestCase { 11 12 public PackageTests(String name) { 13 super(name); 14 } 15 16 public static Test suite() throws Exception { 17 TestSuite suite = new TestSuite(); 18 19 suite.addTestSuite(TestOutParams.class); 20 21 return suite; 22 } 23 } 24 | Popular Tags |