KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > standard > StandardSUITE


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.standard;
9
10 import junit.framework.Test;
11 import junit.framework.TestSuite;
12
13 /**
14  * @author <a HREF="mailto:trevor@protocool.com">Trevor Squires</a>.
15  */

16
17 public class StandardSUITE extends TestSuite
18 {
19    public static void main(String[] args)
20    {
21       junit.textui.TestRunner.run(suite());
22    }
23
24    public static Test suite()
25    {
26       TestSuite suite = new TestSuite("StandardMBean Tests");
27
28       suite.addTest(new TestSuite(TrivialTEST.class));
29       suite.addTest(InfoTortureSUITE.suite());
30       suite.addTest(InheritanceSUITE.suite());
31       suite.addTest(new TestSuite(StandardMBeanTEST.class));
32
33       return suite;
34    }
35 }
36
Popular Tags