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

  Added:       src/main/test/compliance/registration RegistrationSUITE.java
                        RegistrationTEST.java
  Log:
  First pass at a suite of compliance tests
  
  Revision  Changes    Path
  1.1                  jmx/src/main/test/compliance/registration/RegistrationSUITE.java
  
  Index: RegistrationSUITE.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.registration;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  public class RegistrationSUITE extends TestSuite
  {
     public static void main(String[] args)
     {
        junit.textui.TestRunner.run(suite());
     }
  
     public static Test suite()
     {
        TestSuite suite = new TestSuite("All MBeanRegistration Related Tests");
  
        suite.addTest(new TestSuite(RegistrationTEST.class));
  
        return suite;
     }
  
  }
  
  
  
  1.1                  jmx/src/main/test/compliance/registration/RegistrationTEST.java
  
  Index: RegistrationTEST.java
  ===================================================================
  /*
   * JBoss, the OpenSource J2EE webOS
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package test.compliance.registration;
  
  import junit.framework.TestCase;
  
  public class RegistrationTEST extends TestCase
  {
     public RegistrationTEST(String s)
     {
        super(s);
     }
  
     public void testNYI()
     {
        // FIXME THS - I've identified potential problems with the handling of 
MBeanRegistration
        // will put together a testcase to illustrate
     }
  }
  
  
  

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

Reply via email to