| 100 | } |
| 101 | |
| 102 | std::shared_ptr<WireCommand> StepMatchesDecoder(const json& jsonArgs) { |
| 103 | const std::string& nameToMatch = jsonArgs.at("name_to_match"); |
| 104 | return std::make_shared<StepMatchesCommand>(nameToMatch); |
| 105 | } |
| 106 | |
| 107 | void fillTableArg(const json& jsonTableArg, CukeEngine::invoke_table_type& tableArg) { |
| 108 | const std::size_t rows = jsonTableArg.size(); |
nothing calls this directly
no outgoing calls
no test coverage detected