KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > chains > PackageTests


1 package test.chains;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /**
7  */

8 public class PackageTests
9 {
10     public static void main (String JavaDoc[] args) {
11             junit.textui.TestRunner.run (suite());
12     }
13
14     public static Test suite()
15     {
16         TestSuite suite = new TestSuite("All axis Chain tests");
17
18         suite.addTest(TestSimpleChain.suite());
19         suite.addTest(TestChainFault.suite());
20         return suite;
21     }
22 }
23
Popular Tags