Uses of Class
org.junit.jupiter.api.DynamicTest
-
Packages that use DynamicTest Package Description org.junit.jupiter.api JUnit Jupiter API for writing tests. -
-
Uses of DynamicTest in org.junit.jupiter.api
Methods in org.junit.jupiter.api that return DynamicTest Modifier and Type Method Description static DynamicTestDynamicTest. dynamicTest(String displayName, URI testSourceUri, Executable executable)Factory for creating a newDynamicTestfor the supplied display name, custom test sourceURI, and executable code block.static DynamicTestDynamicTest. dynamicTest(String displayName, Executable executable)Factory for creating a newDynamicTestfor the supplied display name and executable code block.Methods in org.junit.jupiter.api that return types with arguments of type DynamicTest Modifier and Type Method Description static <T> Stream<DynamicTest>DynamicTest. stream(Iterator<T> inputGenerator, Function<? super T,String> displayNameGenerator, ThrowingConsumer<? super T> testExecutor)Generate a stream of dynamic tests based on the supplied generators and test executor.
-