Package org.activiti.management.jmx.testMbeans

Examples of org.activiti.management.jmx.testMbeans.BadInherited


    mbeanInfoAssembler.getMBeanInfo(new BadAttributeVoid(), null, "someName");
  }

  @Test
  public void testInherited() throws JMException {
    ModelMBeanInfo beanInfo = mbeanInfoAssembler.getMBeanInfo(new BadInherited(), null, "someName");
    assertNotNull(beanInfo);
    assertNotNull(beanInfo.getAttributes());
    assertEquals(2, beanInfo.getAttributes().length);
    assertNotNull(beanInfo.getOperations());
    assertEquals(3, beanInfo.getOperations().length);
View Full Code Here

TOP

Related Classes of org.activiti.management.jmx.testMbeans.BadInherited

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.