1 25 package org.objectweb.jonas.jtests.clients.mbeans; 26 27 import junit.framework.Test; 28 import junit.framework.TestSuite; 29 30 public class C_mbeans { 31 32 public C_mbeans() { 33 super(); 34 } 36 37 40 public static Test suite() { 41 TestSuite suite = new TestSuite(); 42 suite.addTest(F_WebServicesMBeans.suite()); 43 return suite; 44 } 45 46 public static void main (String args[]) { 47 junit.textui.TestRunner.run(suite()); 48 } 49 } 50 | Popular Tags |