User: squirest
  Date: 01/12/19 17:50:59

  Added:       src/main/test/compliance ComplianceSUITE.java
  Log:
  First pass at a suite of compliance tests
  
  Revision  Changes    Path
  1.1                  jmx/src/main/test/compliance/ComplianceSUITE.java
  
  Index: ComplianceSUITE.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  /**
   * Everything under test.compliance is a set of unit tests
   * which <b>must</b> pass 100% against the JMX RI.
   *
   * Additions to this package are welcome/encouraged - adding a
   * test that fails is a great way to communicate a bug ;-)
   *
   * Anyone contributing to the JBoss JMX impl should seriously
   * consider providing a testcase prior to making code changes
   * in the impl itself - ala XP.
   *
   * <b>The only restriction is to make sure everything in
   * test.compliance passes 100% against the RI.</b> (in case
   * I didn't make that clear enough already)
   *
   * FIXME - need to provide a way to run these suites against the
   * RI and the JBoss impl via ant
   *
   * @author  <a href="mailto:[EMAIL PROTECTED]";>Trevor Squires</a>.
   */
  
  public class ComplianceSUITE extends TestSuite
  {
     public static void main(String[] args)
     {
        junit.textui.TestRunner.run(suite());
     }
  
     public static Test suite()
     {
        TestSuite suite = new TestSuite("All Compliance Tests");
  
        suite.addTest(test.compliance.objectname.ObjectNameSUITE.suite());
        suite.addTest(test.compliance.standard.StandardSUITE.suite());
        suite.addTest(test.compliance.registration.RegistrationSUITE.suite());
        suite.addTest(test.compliance.server.ServerSUITE.suite());
  
        return suite;
     }
  }
  
  
  

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

Reply via email to