final Injector injector = Guice.createInjector(modules);
final MByHaveSpec testInstance; //(MByHaveSpec) testClass.newInstance();
try {
testInstance = injector.getInstance(MByHaveSpec.class);
testInstance.registerHooks(guiceHooks);
} catch (final RuntimeException | Error e) {
log.log(Level.SEVERE, "Couldn't create specification instance");
log.log(Level.SEVERE, "Couldn't create specification instance", e);
throw e;
}