1 31 32 package org.opencms.staticexport; 33 34 import org.opencms.test.OpenCmsTestProperties; 35 36 import junit.framework.Test; 37 import junit.framework.TestSuite; 38 39 47 public final class AllTests { 48 49 52 private AllTests() { 53 54 } 56 57 62 public static Test suite() { 63 64 TestSuite suite = new TestSuite("Tests for package " + AllTests.class.getPackage().getName()); 65 OpenCmsTestProperties.initialize(org.opencms.test.AllTests.TEST_PROPERTIES_PATH); 66 suite.addTest(TestCmsLinkManager.suite()); 68 suite.addTest(TestCmsStaticExportManager.suite()); 69 suite.addTest(TestExportFile.suite()); 70 suite.addTest(TestSecure.suite()); 71 return suite; 73 } 74 } | Popular Tags |