assertNull(parameter.getValue());
}
public void testParameterWithAnnotations() throws Exception
{
ParameterMetaData parameter = getParameter();
assertNull(parameter.getType());
HashSet<String> expected = new HashSet<String>();
expected.add("@" + Annotation1.class.getName());
expected.add("@" + Annotation2.class.getName());
expected.add("@" + Annotation3.class.getName());
assertAnnotations(expected, parameter.getAnnotations());
assertNull(parameter.getValue());
}