Class DynamicContainer

    • Method Detail

      • 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(String, Stream)
      • 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(String, Iterable)