///////////////////////////////////////////////////////////////////////////
| 348 | |
| 349 | //////////////////////////////////////////////////////////////////////////////// |
| 350 | bool Hooks::isJSON(const std::string& input) const { |
| 351 | return input.length() > 2 && input[0] == '{' && input[input.length() - 1] == '}'; |
| 352 | } |
| 353 | |
| 354 | //////////////////////////////////////////////////////////////////////////////// |
| 355 | void Hooks::assertValidJSON(const std::vector<std::string>& input, |
nothing calls this directly
no outgoing calls
no test coverage detected