assertNull(parameter.getValue());
}
public void testParameterWithAnnotations() throws Exception
{
ParameterMetaData parameter = getParameter("ParameterWithAnnotations.xml");
assertNull(parameter.getType());
HashSet<String> expected = new HashSet<String>();
expected.add("org.jboss.test.kernel.deployment.xml.support.Annotation1");
expected.add("org.jboss.test.kernel.deployment.xml.support.Annotation2");
expected.add("org.jboss.test.kernel.deployment.xml.support.Annotation3");
assertAnnotations(expected, parameter.getAnnotations());
assertNull(parameter.getValue());
}