Package org.jboss.test.system.controller.support

Examples of org.jboss.test.system.controller.support.SimpleMBean


      assertNotNull(beanContext);
      Object bean = beanContext.getTarget();
      assertNotNull(bean);
      assertTrue(bean instanceof SimpleBean);
     
      SimpleMBean simpleMBean = (SimpleMBean) mbean;
     
      Object injected = simpleMBean.getSimpleBean();
     
      assertTrue("Bean was not injected: ", bean == injected);
   }
View Full Code Here


      assertNotNull(beanContext);
      Object bean = beanContext.getTarget();
      assertNotNull(bean);
      assertTrue(bean instanceof SimpleBean);
     
      SimpleMBean simpleMBean = (SimpleMBean) mbean;
     
      Object injected = simpleMBean.getSimpleBean();
     
      assertTrue("Bean was not injected: ", bean == injected);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.system.controller.support.SimpleMBean

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.