| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| InjectableStepsFactory |
|
| 1.0;1 |
| 1 | package org.jbehave.core.steps; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | ||
| 5 | /** | |
| 6 | * Interface abstracting the creation of {@link CandidateSteps}. | |
| 7 | * Concrete implementations should be injected with the mechanism | |
| 8 | * to instantiate the CandidateSteps instances. | |
| 9 | */ | |
| 10 | public interface InjectableStepsFactory { | |
| 11 | ||
| 12 | List<CandidateSteps> createCandidateSteps(); | |
| 13 | ||
| 14 | } |