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);
}