Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
StepResult |
|
| 1.0;1 |
1 | package org.jbehave.core.steps; | |
2 | ||
3 | import org.jbehave.core.reporters.StoryReporter; | |
4 | ||
5 | public interface StepResult { | |
6 | ||
7 | String parametrisedStep(); | |
8 | ||
9 | StepResult withParameterValues(String parametrisedStep); | |
10 | ||
11 | void describeTo(StoryReporter reporter); | |
12 | ||
13 | Throwable getFailure(); | |
14 | ||
15 | } |