1 22 package test.implementation; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 40 41 public class ImplementationSUITE extends TestSuite 42 { 43 public static void main(String [] args) 44 { 45 junit.textui.TestRunner.run(suite()); 46 47 if (System.getProperty("force.jvm.exit") != null && 48 System.getProperty("force.jvm.exit").equalsIgnoreCase("true")) 49 System.exit(0); 50 } 51 52 public static Test suite() 53 { 54 TestSuite suite = new TestSuite("All JBossMX Implementation Tests"); 55 56 suite.addTest(test.implementation.util.UtilSUITE.suite()); 57 suite.addTest(test.implementation.persistence.PersistenceSUITE.suite()); 58 suite.addTest(test.implementation.loading.LoadingSUITE.suite()); 59 suite.addTest(test.implementation.server.ServerSUITE.suite()); 60 suite.addTest(test.implementation.registry.RegistrySUITE.suite()); 61 suite.addTest(test.implementation.modelmbean.ModelMBeanSUITE.suite()); 62 suite.addTest(test.implementation.interceptor.InterceptorSUITE.suite()); 63 suite.addTest(test.implementation.notification.NotificationSUITE.suite()); 64 65 return suite; 66 } 67 } 68 | Popular Tags |