01: package junit.samples;
02:
03: import junit.framework.Test;
04: import junit.framework.TestSuite;
05:
06: /**
07: * TestSuite that runs all the sample tests
08: *
09: */
10: public class AllTests {
11:
12: public static void main(String[] args) {
13: junit.textui.TestRunner.run(suite());
14: }
15:
16: public static Test suite() {
17: TestSuite suite = new TestSuite("All JUnit Tests");
18: suite.addTest(ListTest.suite());
19: suite
20: .addTest(new TestSuite(
21: junit.samples.money.MoneyTest.class));
22: suite.addTest(junit.tests.AllTests.suite());
23: return suite;
24: }
25: }
|