With this test
@TestFactory
public Stream<DynamicContainer> testContainers() {
return Stream.of(dynamicContainer("Container", List.of(
dynamicTest("Test", () -> {assertTrue(false);})
)));
}
Gradle outputs the result, but VSCode runs the test and reports just an empty bullet, not picking the failure.
With this test
Gradle outputs the result, but VSCode runs the test and reports just an empty bullet, not picking the failure.