assertNull(property.getValue());
}
public void testPropertyWithAnnotations() throws Exception
{
PropertyMetaData property = getProperty();
assertNotNull("PropertyName", property.getName());
HashSet<String> expected = new HashSet<String>();
expected.add("@" + Annotation1.class.getName());
expected.add("@" + Annotation2.class.getName());
expected.add("@" + Annotation3.class.getName());
assertAnnotations(expected, property.getAnnotations());
assertNull(property.getValue());
}