assertNull(constructor.getValue());
}
public void testConstructorWithAnnotations() throws Exception
{
ConstructorMetaData constructor = getConstructor();
assertNull(constructor.getFactoryClass());
assertNull(constructor.getFactoryMethod());
HashSet<String> expected = new HashSet<String>();
expected.add("@" + Annotation1.class.getName());
expected.add("@" + Annotation2.class.getName());
expected.add("@" + Annotation3.class.getName());
assertAnnotations(expected, constructor.getAnnotations());
assertNull(constructor.getFactory());
assertNull(constructor.getParameters());
assertNull(constructor.getValue());
}