Interface Node.DynamicTestExecutor
-
- Enclosing interface:
- Node<C extends EngineExecutionContext>
public static interface Node.DynamicTestExecutor
Executor for additional, dynamic test descriptors discovered during execution of aNode
.The test descriptors will be executed by the same
HierarchicalTestExecutor
that executes the submitting node.This interface is not intended to be implemented by clients.
- See Also:
Node.execute(EngineExecutionContext, DynamicTestExecutor)
,HierarchicalTestExecutor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(TestDescriptor testDescriptor)
Submit a dynamic test descriptor for immediate execution.
-
-
-
Method Detail
-
execute
void execute(TestDescriptor testDescriptor)
Submit a dynamic test descriptor for immediate execution.- Parameters:
testDescriptor
- the test descriptor to be executed
-
-