Implementation implem = waitForImplByName(null, "LifeCycleTest");
Instance instance = implem.createInstance(null,configuration);
instance.setProperty("selfDestroy",true);
Service service = (Service) instance.getServiceObject();
service.action();
Assert.assertNull("instance must be destroyed",CST.apamResolver.findInstByName(null,configuration.get("instance.name")));
}