Uses of Class
org.junit.jupiter.api.DynamicTest
-
Packages that use DynamicTest Package Description org.junit.jupiter.api JUnit Jupiter API for writing tests.org.junit.jupiter.engine.descriptor Test descriptors used within the JUnit Jupiter test engine. -
-
Uses of DynamicTest in org.junit.jupiter.api
Methods in org.junit.jupiter.api that return DynamicTest Modifier and Type Method Description static DynamicTest
DynamicTest. dynamicTest(java.lang.String displayName, java.net.URI testSourceUri, Executable executable)
Factory for creating a newDynamicTest
for the supplied display name, custom test sourceURI
, and executable code block.static DynamicTest
DynamicTest. dynamicTest(java.lang.String displayName, Executable executable)
Factory for creating a newDynamicTest
for 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> 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 supplied generators and test executor. -
Uses of DynamicTest in org.junit.jupiter.engine.descriptor
Fields in org.junit.jupiter.engine.descriptor declared as DynamicTest Modifier and Type Field Description private DynamicTest
DynamicTestTestDescriptor. dynamicTest
Constructors in org.junit.jupiter.engine.descriptor with parameters of type DynamicTest Constructor Description DynamicTestTestDescriptor(UniqueId uniqueId, int index, DynamicTest dynamicTest, TestSource source, JupiterConfiguration configuration)
-