Interface DynamicNode.Configuration<T extends DynamicNode.Configuration<T>>
- All Known Subinterfaces:
DynamicContainer.Configuration, DynamicTest.Configuration
- Enclosing class:
DynamicNode
@API(status=EXPERIMENTAL,
since="6.1")
public static sealed interface DynamicNode.Configuration<T extends DynamicNode.Configuration<T>>
permits DynamicTest.Configuration, DynamicContainer.Configuration (not exhaustive)
Configuration of a DynamicNode or one of its
subinterfaces.- Since:
- 6.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondisplayName(String displayName) Set the display name to use for the configuredDynamicNode.executionMode(ExecutionMode executionMode) Set the execution mode to use for the configuredDynamicNode.testSourceUri(@Nullable URI testSourceUri) Set the test source URI to use for the configuredDynamicNode.
-
Method Details
-
displayName
Set the display name to use for the configuredDynamicNode.- Parameters:
displayName- the display name; nevernullor blank- Returns:
- this configuration for method chaining
-
testSourceUri
Set the test source URI to use for the configuredDynamicNode.- Parameters:
testSourceUri- the test source URI; may benull- Returns:
- this configuration for method chaining
-
executionMode
Set the execution mode to use for the configuredDynamicNode.- Parameters:
executionMode- the execution mode; nevernull- Returns:
- this configuration for method chaining
-