assertNull(install.getParameters());
}
public void testInstallWithAnnotations() throws Exception
{
InstallMetaData install = getInstall();
assertNull(install.getBean());
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());
}