TestEnricher testEnricher = new DroneTestEnricher();
manager.getContext(ClassContext.class).activate(MethodEnrichedClass.class);
Mockito.when(serviceLoader.all(Configurator.class))
.thenReturn(Arrays.<Configurator> asList(new MockDroneFactory()));
Mockito.when(serviceLoader.all(Instantiator.class))
.thenReturn(Arrays.<Instantiator> asList(new MockDroneFactory()));
Mockito.when(serviceLoader.all(Destructor.class))
.thenReturn(Arrays.<Destructor> asList(new MockDroneFactory()));
Mockito.when(serviceLoader.all(TestEnricher.class))
.thenReturn(Arrays.<TestEnricher> asList(testEnricher));
manager.fire(new BeforeSuite());