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.ai;
10:
11: import junit.framework.*;
12:
13: /**
14: * Test suite for the org.acm.seguin.pretty.ai package
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(TestParseVariableName.class));
28:
29: return suite;
30: }
31: }
|