Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Step |
|
| 1.0;1 |
1 | package org.jbehave.core.steps; | |
2 | ||
3 | import org.jbehave.core.failures.UUIDExceptionWrapper; | |
4 | ||
5 | /** | |
6 | * A Step represents a runnable portion of a Scenario, which matches methods annotated in {@link CandidateSteps} instances. | |
7 | */ | |
8 | public interface Step { | |
9 | ||
10 | StepResult perform(UUIDExceptionWrapper storyFailureIfItHappened); | |
11 | ||
12 | StepResult doNotPerform(UUIDExceptionWrapper storyFailureIfItHappened); | |
13 | ||
14 | } |