| 106 | int failedTests; |
| 107 | |
| 108 | void updateState(const char* description, bool testSuccessState) { |
| 109 | std::cout << (testSuccessState ? "SUCCESS" : "FAILURE") << " (" << description << ")" |
| 110 | << std::endl; |
| 111 | failedTests += testSuccessState ? 0 : 1; |
| 112 | } |
| 113 | |
| 114 | step_id_type getStepIdFromMatcher(const std::string& stepMatcher) { |
| 115 | return StepManager::getStepId(stepMatcher); |
nothing calls this directly
no outgoing calls
no test coverage detected