tw.teddysoft.ezspec.keyword.StepExecutionOutcome Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ezspec-core Show documentation
Show all versions of ezspec-core Show documentation
ezspec is a framework for adopting Gherkin in Java testing.
The newest version!
package tw.teddysoft.ezspec.keyword;
/**
* {@code StepExecutionOutcome} is the enum for Step execution outcome.
*
* @author Teddy Chen
* @since 1.0
*/
public enum StepExecutionOutcome {
/**
* Default step status or this step has not been implemented.
*/
Pending,
/**
* Success step execution outcome.
*/
Success,
/**
* Failure step execution outcome.
*/
Failure,
/**
* The past step failed and this step was not executed.
*/
Skipped;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy