return CDI.current().select(clazz).get();
}
@Override
protected void runChild(FrameworkMethod method, RunNotifier notifier) {
Contexts contexts = CDI.current().select(Contexts.class).get();
contexts.startRequestScope();
super.runChild(method, notifier);
contexts.stopRequestScope();
}