KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > modelmbean > ModelMBeanSUITE


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.modelmbean;
9
10 import junit.framework.Test;
11 import junit.framework.TestSuite;
12
13 public class ModelMBeanSUITE 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("All ModelMBean Related Tests");
23
24       suite.addTest(new TestSuite(DescriptorTEST.class));
25       suite.addTest(new TestSuite(ModelMBeanTEST.class));
26       suite.addTest(new TestSuite(ModelMBeanInfoSupportTEST.class));
27       
28       return suite;
29    }
30
31 }
32
Popular Tags