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