Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
StepdocReporter |
|
| 1.0;1 |
1 | package org.jbehave.core.reporters; | |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | import org.jbehave.core.steps.Stepdoc; | |
6 | ||
7 | public interface StepdocReporter { | |
8 | ||
9 | void stepdocs(List<Stepdoc> stepdocs, List<Object> stepsInstances); | |
10 | ||
11 | void stepdocsMatching(String stepAsString, List<Stepdoc> matching, List<Object> stepsIntances); | |
12 | ||
13 | } |