01: /*
02: * Author: Chris Seguin
03: *
04: * This software has been developed under the copyleft
05: * rules of the GNU General Public License. Please
06: * consult the GNU General Public License for more
07: * details about use and distribution of this software.
08: */
09: package org.acm.seguin.pretty;
10:
11: import junit.framework.*;
12:
13: /**
14: * Description of the Class
15: *
16: *@author Chris Seguin
17: */
18: public class TestPackage {
19: /**
20: * A suite of unit tests for JUnit
21: *
22: *@return The test suite
23: */
24: public static TestSuite suite() {
25: TestSuite suite = new TestSuite();
26:
27: suite.addTest(new TestSuite(TestPrettyPrinter.class));
28: suite.addTest(new TestSuite(TestPrettyPrinterJDK1_5.class));
29: suite.addTest(new TestSuite(TestJavadocTokenizer.class));
30: suite.addTest(org.acm.seguin.pretty.line.TestPackage.suite());
31: suite.addTest(org.acm.seguin.pretty.ai.TestPackage.suite());
32: //suite.addTest(TestPrettyPrinter.suite());
33: //suite.addTest(TestPrettyPrinterJDK1_5.suite());
34:
35: return suite;
36: }
37: }
|