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