default void |
TestReporter.publishDirectory(java.lang.String name,
ThrowingConsumer<java.nio.file.Path> action) |
Publish a directory with the supplied name written by the supplied action
and attach it to the current test or container.
|
default void |
TestReporter.publishFile(java.lang.String name,
MediaType mediaType,
ThrowingConsumer<java.nio.file.Path> action) |
Deprecated.
|
default void |
TestReporter.publishFile(java.lang.String name,
MediaType mediaType,
ThrowingConsumer<java.nio.file.Path> action) |
Publish a file with the supplied name and media type written by the supplied
action and attach it to the current test or container.
|
static <T> java.util.stream.Stream<DynamicTest> |
DynamicTest.stream(java.util.Iterator<? extends Named<T>> inputGenerator,
ThrowingConsumer<? super T> testExecutor) |
Generate a stream of dynamic tests based on the given generator and test
executor.
|
static <T> java.util.stream.Stream<DynamicTest> |
DynamicTest.stream(java.util.Iterator<T> inputGenerator,
java.util.function.Function<? super T,java.lang.String> displayNameGenerator,
ThrowingConsumer<? super T> testExecutor) |
Generate a stream of dynamic tests based on the given generator and test
executor.
|
static <T> java.util.stream.Stream<DynamicTest> |
DynamicTest.stream(java.util.stream.Stream<? extends Named<T>> inputStream,
ThrowingConsumer<? super T> testExecutor) |
Generate a stream of dynamic tests based on the given input stream and
test executor.
|
static <T> java.util.stream.Stream<DynamicTest> |
DynamicTest.stream(java.util.stream.Stream<T> inputStream,
java.util.function.Function<? super T,java.lang.String> displayNameGenerator,
ThrowingConsumer<? super T> testExecutor) |
Generate a stream of dynamic tests based on the given input stream and
test executor.
|