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

Examples of org.jboss.test.system.controller.integration.support.SimpleStringBean


      assertNotNull(beanContext);
      Object bean = beanContext.getTarget();
      assertNotNull(bean);
      assertInstanceOf(SimpleStringBean.class, bean);

      SimpleStringBean simpleBean = (SimpleStringBean) bean;
      assertEquals(string, simpleBean.getString1());
      assertEquals(string, simpleBean.getString2());
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.system.controller.integration.support.SimpleStringBean

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.