assertNull(classInfo.getFieldInfo("field99", false));
}
public void testFieldInfoNARequired() throws Exception
{
ClassInfo classInfo = ClassInfos.getClassInfo(A.class);
try
{
classInfo.getFieldInfo("field99", true);
fail("Exception must be thrown for not availble FieldInfo.");
}
catch(RuntimeException e)
{
}