| 21 | } |
| 22 | |
| 23 | APPROVAL_TESTS_NO_DISCARD |
| 24 | bool StringUtils::contains(const std::string& inText, const std::string& find) |
| 25 | { |
| 26 | return inText.find(find, 0) != std::string::npos; |
| 27 | } |
| 28 | |
| 29 | APPROVAL_TESTS_NO_DISCARD |
| 30 | std::string StringUtils::toLower(std::string inText) |
nothing calls this directly
no outgoing calls
no test coverage detected