| 714 | Contains::Contains(const String& str) : string(str) { } |
| 715 | |
| 716 | bool Contains::checkWith(const String& other) const { |
| 717 | return strstr(other.c_str(), string.c_str()) != nullptr; |
| 718 | } |
| 719 | |
| 720 | String toString(const Contains& in) { |
| 721 | return "Contains( " + in.string + " )"; |
no test coverage detected