public void testNewBeanEntryForUnknownDeploymentThrowsISE() throws Exception {
startVerification();
try {
VMID primaryKey = new VMID();
Instance instance = new Instance(deploymentInfo, primaryKey, new Object(), null, (Map<EntityManagerFactory, EntityManager>) null);
manager.add(primaryKey, instance);
fail();
} catch (IllegalStateException e) {
}