1 package test.properties;2 3 import junit.framework.Test;4 import junit.framework.TestCase;5 import junit.framework.TestSuite;6 7 /**8 * Test package for property tests9 */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(TestScopedProperties.class);20 21 return suite;22 }23 }24