User: juhalindfors Date: 02/01/23 13:43:20 Added: src/main/test/performance PerformanceSUITE.java Log: Revision Changes Path 1.1 jmx/src/main/test/performance/PerformanceSUITE.java Index: PerformanceSUITE.java =================================================================== /* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package test.performance; import junit.framework.Test; import junit.framework.TestSuite; /** * * @author <a href="mailto:[EMAIL PROTECTED]">Juha Lindfors</a>. */ public class PerformanceSUITE extends TestSuite { public final static int ITERATION_COUNT = 100000; public final static int REPEAT_COUNT = 10; public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } public static Test suite() { TestSuite suite = new TestSuite("All Performance Tests"); suite.addTest(test.performance.dynamic.DynamicSUITE.suite()); suite.addTest(test.performance.standard.StandardSUITE.suite()); return suite; } }
_______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
