| 191 | |
| 192 | template<class T> |
| 193 | static int registerStep(const std::string& stepMatcher, const char* file, const int line) { |
| 194 | return StepManager::addStep( |
| 195 | std::make_shared<StepInvoker<T>>(stepMatcher, toSourceString(file, line)) |
| 196 | ); |
| 197 | } |
| 198 | |
| 199 | template<typename T> |
| 200 | T fromString(const std::string& s) { |
nothing calls this directly
no test coverage detected