DroneContext context = getManager()
.getContext(ApplicationContext.class).getObjectStore().get(DroneContext.class);
Assert.assertNotNull("DroneContext was created in the context", context);
DroneRegistry registry = getManager().getContext(SuiteContext.class).getObjectStore().get(DroneRegistry.class);
Assert.assertNotNull("Drone registry was created in the context", registry);
Assert.assertTrue(registry.getEntryFor(MockDrone.class, Configurator.class) instanceof MockDroneFactory);
Assert.assertTrue(registry.getEntryFor(MockDrone.class, Instantiator.class) instanceof MockDroneFactory);
Assert.assertTrue(registry.getEntryFor(MockDrone.class, Destructor.class) instanceof MockDroneFactory);
assertEventFired(BeforeDroneConfigured.class, 0);
assertEventFired(AfterDroneConfigured.class, 0);
assertEventFired(BeforeDroneCallableCreated.class, 0);
assertEventFired(AfterDroneCallableCreated.class, 0);