use of org.jboss.weld.environment.se.Weld in project jetty.project by eclipse.
the class WebSocketScopeBaselineTest method startWeld.
@BeforeClass
public static void startWeld() {
Logging.config();
weld = new Weld();
container = weld.initialize();
}
use of org.jboss.weld.environment.se.Weld in project jetty.project by eclipse.
the class WebSocketScopeSessionTest method startWeld.
@BeforeClass
public static void startWeld() {
Logging.config();
weld = new Weld();
container = weld.initialize();
}
use of org.jboss.weld.environment.se.Weld in project jersey by jersey.
the class HelloWorldTest method setUp.
@Override
public void setUp() throws Exception {
weld = new Weld();
weld.initialize();
super.setUp();
}
use of org.jboss.weld.environment.se.Weld in project jersey by jersey.
the class NonJaxRsBeanJaxRsInjectionTest method initializeWeld.
private void initializeWeld() {
weld = new Weld();
weld.initialize();
}
use of org.jboss.weld.environment.se.Weld in project jersey by jersey.
the class SecondJaxRsInjectedCdiBeanTest method setUp.
@Override
public void setUp() throws Exception {
weld = new Weld();
weld.initialize();
super.setUp();
}
Aggregations