01: package com.tagtraum.perf;
02:
03: import junit.framework.TestSuite;
04: import junit.textui.TestRunner;
05: import com.tagtraum.perf.io.TestFastStreamWriter;
06: import com.tagtraum.perf.io.TestMaskedStreamWriter;
07:
08: public class TestAll {
09:
10: /** Source-Version: <code>$Id: TestAll.java,v 1.1 2002/01/15 23:54:18 hendriks73 Exp $</code> */
11: public static String vcid = "$Id: TestAll.java,v 1.1 2002/01/15 23:54:18 hendriks73 Exp $";
12:
13: /**
14: * Returns the TestSuite for TestAll.
15: */
16: public static TestSuite suite() {
17: TestSuite suite = new TestSuite();
18: // subpackages
19: suite.addTest(com.tagtraum.perf.io.TestAll.suite());
20: suite.addTest(com.tagtraum.perf.util.TestAll.suite());
21: return suite;
22: }
23:
24: /**
25: * Runs the textui JUnit-TestRunner for TestAll.
26: */
27: public static void main(String[] args) {
28: TestRunner.run(suite());
29: }
30:
31: }
|