KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > loading > LoadingSUITE


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package test.compliance.loading;
9
10 import junit.framework.Test;
11 import junit.framework.TestSuite;
12
13 public class LoadingSUITE extends TestSuite
14 {
15    public static void main(String[] args)
16    {
17       junit.textui.TestRunner.run(suite());
18    }
19
20    public static Test suite()
21    {
22       TestSuite suite = new TestSuite("MLet Tests");
23
24       suite.addTest(new TestSuite(MLetTEST.class));
25       
26       return suite;
27    }
28
29 }
30
Popular Tags