Package org.jboss.test.kernel.inject.support

Examples of org.jboss.test.kernel.inject.support.ConstructorValueBean


      assertNotNull(test4.getTesterInterface());

      ConstructorInjectTestObject test5 = (ConstructorInjectTestObject) getBean("testObject5");
      assertNotNull(test5.getTesterInterface());

      ConstructorValueBean constBean = (ConstructorValueBean) getBean("constBean");
      ConstructorValueBean constBeanRef = (ConstructorValueBean) getBean("constBeanRef");
      assertNotNull(constBean);
      assertNotNull(constBeanRef);
      assertEquals(constBean, constBeanRef);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.kernel.inject.support.ConstructorValueBean

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.