public void handle(@Observes PluginContainerDiscovered event) {
for(PluginContainerPreparator prep : serviceLoader.get().all(PluginContainerPreparator.class)) {
prep.prepare(pluginContainer.get(), event);
}
pluginContainerPrepared.fire(new PluginContainerPrepared(event.getTestInstance(), event.getTestMethod()));
}