1 31 32 package org.opencms.db; 33 34 import org.opencms.test.OpenCmsTestProperties; 35 36 import junit.framework.Test; 37 import junit.framework.TestSuite; 38 39 49 public final class AllTests { 50 51 55 private AllTests() { 56 57 } 59 60 66 public static Test suite() { 67 68 TestSuite suite = new TestSuite("Tests for package " + AllTests.class.getPackage().getName()); 69 OpenCmsTestProperties.initialize(org.opencms.test.AllTests.TEST_PROPERTIES_PATH); 70 suite.addTest(TestQueryProperties.suite()); 72 return suite; 74 } 75 } | Popular Tags |