@Retention(value=RUNTIME) @Target(value={TYPE,METHOD}) @Documented @Inherited @ExtendWith(value=WeldJunit5Extension.class) public @interface EnableWeld
@EnableWeld
instead of @ExtendWith(WeldJunit5Extension.class).
@EnableWeld public class SimpleTest { // Injected automatically @Inject Foo foo; @Test public void testFoo() { // Weld container is started automatically assertEquals("baz", foo.getBaz()); } }
WeldJunit5ExtensionCopyright © 2018. All rights reserved.