Interface ExecutionState
-
- All Known Subinterfaces:
MutableExecutionState
- All Known Implementing Classes:
ExecutionStateImpl
public interface ExecutionState
ExecutionState
provides information about the state of the currently running execution.- Since:
- 2.0.0
- Author:
- Oliver Libutzki <[email protected]>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<TestStep>
getCurrentTestStep()
Returns the current test step.
-
-
-
Method Detail
-
getCurrentTestStep
java.util.Optional<TestStep> getCurrentTestStep()
Returns the current test step. If test classes or steps are executed in parallel the current test step of the current thread is returned.- Returns:
- the current test step, cannot be null, but the optional might be empty
- Since:
- 2.0.0
-
-