| 34 | } |
| 35 | |
| 36 | bool matchesOnce(const string& stepMatch) { |
| 37 | return (countMatches(stepMatch) == 1); |
| 38 | } |
| 39 | |
| 40 | bool matchesAtLeastOnce(const string& stepMatch) { |
| 41 | return (countMatches(stepMatch) > 0); |
nothing calls this directly
no outgoing calls
no test coverage detected