assertNull(install.getParameters());
}
public void testCallbackInstallWithAnnotations() throws Exception
{
CallbackMetaData install = getInstallCallback();
assertNull(install.getProperty());
assertEquals(ControllerState.INSTALLED, install.getDependentState());
assertEquals("Dummy", install.getMethodName());
HashSet<String> expected = new HashSet<String>();
expected.add("@" + Annotation1.class.getName());
expected.add("@" + Annotation2.class.getName());
expected.add("@" + Annotation3.class.getName());
assertAnnotations(expected, install.getAnnotations());
assertNull(install.getParameters());
}