1 package attrib4j.tests;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /***
7 * Run the tests.
8 *
9 *
10 * Created: Tue Oct 15 17:00:48 2002
11 *
12 * @author <a href="mailto:mpollack@speakeasy.org">Mark Pollack</a>
13 */
14
15 public class AllTests {
16
17 /***
18 * Run the test in the text runner.
19 * @param args command line arguments.
20 */
21 public static void main(String[] args) {
22 junit.textui.TestRunner.run(suite());
23 }
24
25 /***
26 * Create a suite of tests
27 * @return Test
28 */
29 public static Test suite() {
30 TestSuite suite = new TestSuite("All Attrib4j Tests");
31 // suite.addTestSuite(attrib4j.tests.AttributeTest.class);
32 // suite.addTest(new attrib4j.tests.DescriptorTest("testDescriptor"));
33 //suite.addTestSuite(attrib4j.tests.DescriptorTest.class);
34 suite.addTestSuite(attrib4j.tests.AttributeTest.class);
35 return suite;
36 }
37
38 } // AllTests
This page was automatically generated by Maven