Package org.jboss.test.beaninfo.support

Examples of org.jboss.test.beaninfo.support.BeanInfoDefaultConstructor


   public void testDefaultConstructor() throws Throwable
   {
      BeanInfo beanInfo = getBeanInfo(BeanInfoDefaultConstructor.class);
      assertNotNull(beanInfo);
      Object object = beanInfo.newInstance();
      BeanInfoDefaultConstructor bean = assertInstanceOf(object, BeanInfoDefaultConstructor.class);
      assertTrue(bean.invoked);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.beaninfo.support.BeanInfoDefaultConstructor

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.