Class<? extends Bootstrapper> cls = mockIOCGenerator.generate();
Bootstrapper bs = cls.newInstance();
long tm = System.currentTimeMillis();
InterfaceInjectionContext ctx = bs.bootstrapContainer();
ctx.getRootContext().finish();
System.out.println("bootstrapped simulated container in " + (System.currentTimeMillis() - tm) + "ms");
return ctx;
}
catch (GenerationException e) {