DroneContext context = getManager().getContext(ApplicationContext.class).getObjectStore().get(DroneContext
.class);
Assert.assertNotNull("DroneContext was created in the context", context);
GlobalDroneConfiguration globalDroneConfiguration = context.getGlobalDroneConfiguration
(GlobalDroneConfiguration.class);
Assert.assertNotNull("Global Drone configuration was created", globalDroneConfiguration);
Assert.assertEquals("Drone timeout is set to " + timeout + " seconds", timeout,
globalDroneConfiguration.getInstantiationTimeoutInSeconds());
}