| 4 | namespace internal { |
| 5 | |
| 6 | StepInfo::StepInfo(const std::string& stepMatcher, const std::string source) : |
| 7 | regex(stepMatcher), |
| 8 | source(source) { |
| 9 | static step_id_type currentId = 0; |
| 10 | id = ++currentId; |
| 11 | } |
| 12 | |
| 13 | SingleStepMatch StepInfo::matches(const std::string& stepDescription) const { |
| 14 | SingleStepMatch stepMatch; |
nothing calls this directly
no outgoing calls
no test coverage detected