Class DynamicContainer

java.lang.Object
org.junit.jupiter.api.DynamicNode
org.junit.jupiter.api.DynamicContainer

@API(status=MAINTAINED, since="5.3") public class DynamicContainer extends DynamicNode
A DynamicContainer is a container generated at runtime.

It is composed of a display name and an Iterable or Stream of DynamicNodes.

Instances of DynamicContainer must be generated by factory methods annotated with @TestFactory.

Since:
5.0
See Also:
  • Method Details

    • dynamicContainer

      public static DynamicContainer dynamicContainer(String displayName, Iterable<? extends DynamicNode> dynamicNodes)
      Factory for creating a new DynamicContainer for the supplied display name and collection of dynamic nodes.

      The collection of dynamic nodes must not contain null elements.

      Parameters:
      displayName - the display name for the dynamic container; never null or blank
      dynamicNodes - collection of dynamic nodes to execute; never null
      See Also:
    • dynamicContainer

      public static DynamicContainer dynamicContainer(String displayName, Stream<? extends DynamicNode> dynamicNodes)
      Factory for creating a new DynamicContainer for the supplied display name and stream of dynamic nodes.

      The stream of dynamic nodes must not contain null elements.

      Parameters:
      displayName - the display name for the dynamic container; never null or blank
      dynamicNodes - stream of dynamic nodes to execute; never null
      See Also:
    • dynamicContainer

      public static DynamicContainer dynamicContainer(String displayName, @Nullable URI testSourceUri, Stream<? extends DynamicNode> dynamicNodes)
      Factory for creating a new DynamicContainer for the supplied display name, custom test source URI, and stream of dynamic nodes.

      The stream of dynamic nodes must not contain null elements.

      Parameters:
      displayName - the display name for the dynamic container; never null or blank
      testSourceUri - a custom test source URI for the dynamic container; may be null if the framework should generate the test source based on the @TestFactory method
      dynamicNodes - stream of dynamic nodes to execute; never null
      Since:
      5.3
      See Also:
    • dynamicContainer

      @API(status=EXPERIMENTAL, since="6.1") public static DynamicContainer dynamicContainer(Consumer<? super DynamicContainer.Configuration> configurer)
      Factory for creating a new DynamicTest that is configured via the supplied Consumer of DynamicTest.Configuration.
      Parameters:
      configurer - callback for configuring the resulting DynamicTest; never null.
      Since:
      6.1
    • getChildren

      public Stream<? extends DynamicNode> getChildren()
      Get the Stream of DynamicNodes associated with this DynamicContainer.
    • getChildExecutionMode

      @API(status=EXPERIMENTAL, since="6.1") public Optional<ExecutionMode> getChildExecutionMode()
      Returns the ExecutionMode for children of this DynamicContainer that is used unless they are configured differently..
      Returns:
      the ExecutionMode for children of this DynamicContainer that is used unless they are configured differently
      Since:
      6.1
      See Also: