1 22 package test.performance.invocationhandler; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 33 public class InvocationHandlerSUITE extends TestSuite 34 { 35 public static void main(String [] args) 36 { 37 junit.textui.TestRunner.run(suite()); 38 } 39 40 public static Test suite() 41 { 42 TestSuite suite = new TestSuite("Performance tests for MBeanServerInvocationHandler"); 43 44 suite.addTest(new TestSuite(ThroughputTEST.class)); 45 46 return suite; 47 } 48 49 } 50 | Popular Tags |