| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| StepMatcher |
|
| 1.0;1 |
| 1 | package org.jbehave.core.parsers; | |
| 2 | ||
| 3 | public interface StepMatcher { | |
| 4 | ||
| 5 | boolean matches(String stepWithoutStartingWord); | |
| 6 | ||
| 7 | boolean find(String stepWithoutStartingWord); | |
| 8 | ||
| 9 | String parameter(int matchedPosition); | |
| 10 | ||
| 11 | String[] parameterNames(); | |
| 12 | ||
| 13 | String pattern(); | |
| 14 | ||
| 15 | } |