User: ejort   
  Date: 02/04/20 04:37:50

  Added:       src/main/test/stress StressSUITE.java
  Log:
  Improved Timer and Monitor Services
  
  Revision  Changes    Path
  1.1                  jmx/src/main/test/stress/StressSUITE.java
  
  Index: StressSUITE.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
   
  package test.stress;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  /**
   * Stress tests
   *
   * @author  <a href="mailto:[EMAIL PROTECTED]";>Adrian Brock</a>.
   */
  
  public class StressSUITE extends TestSuite
  {
  
     public static void main(String[] args)
     {
        junit.textui.TestRunner.run(suite());
     }
  
     public static Test suite()
     {
        TestSuite suite = new TestSuite("All Stress Tests");
  
        suite.addTest(test.stress.timer.TimerSUITE.suite());
        
        return suite;
     }
  }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to