KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > file > AllTests


1 /*
2  * File : $Source: /usr/local/cvs/opencms/test/org/opencms/file/AllTests.java,v $
3  * Date : $Date: 2006/03/27 14:52:46 $
4  * Version: $Revision: 1.42 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software GmbH, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31
32 package org.opencms.file;
33
34 import org.opencms.test.OpenCmsTestProperties;
35
36 import junit.framework.Test;
37 import junit.framework.TestSuite;
38
39 /**
40  * Main test suite for the package <code>{@link org.opencms.file}</code>.<p>
41  *
42  * @author Alexander Kandzior
43  * @version $Revision: 1.42 $
44  *
45  * @since 6.0
46  */

47 public final class AllTests {
48
49     /**
50      * Hide constructor to prevent generation of class instances.<p>
51      */

52     private AllTests() {
53
54         // empty
55
}
56
57     /**
58      * Returns the JUnit test suite for this package.<p>
59      *
60      * @return the JUnit test suite for this package
61      */

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         //$JUnit-BEGIN$
67
suite.addTest(TestChacc.suite());
68         suite.addTest(TestCopy.suite());
69         suite.addTest(TestChtype.suite());
70         suite.addTest(TestCmsResourceFilter.suite());
71         suite.addTest(TestCreateWriteResource.suite());
72         suite.addTest(TestDefaultResourceCollectors.suite());
73         suite.addTest(TestDeletion.suite());
74         suite.addTest(TestExists.suite());
75         suite.addTest(TestLock.suite());
76         suite.addTest(TestMoveRename.suite());
77         suite.addTest(TestPermissions.suite());
78         suite.addTest(TestPriorityResourceCollectors.suite());
79         suite.addTest(TestProjects.suite());
80         suite.addTest(TestProperty.suite());
81         suite.addTest(TestPropertyDefinition.suite());
82         suite.addTest(TestPublishing.suite());
83         suite.addTest(TestPublishIssues.suite());
84         suite.addTest(TestReadResource.suite());
85         suite.addTest(TestReadResourceTree.suite());
86         suite.addTest(TestReleaseExpire.suite());
87         suite.addTest(TestReplace.suite());
88         suite.addTest(TestResourceOperations.suite());
89         suite.addTest(TestRestoreFromHistory.suite());
90         suite.addTest(TestSiblings.suite());
91         suite.addTest(TestTouch.suite());
92         suite.addTest(TestUndoChanges.suite());
93         suite.addTest(TestBackup.suite());
94         suite.addTest(TestChangeProperties.suite());
95         //$JUnit-END$
96
return suite;
97     }
98 }
Popular Tags