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