| 1281 | // only), and return an appropriate error message when they fail. |
| 1282 | |
| 1283 | AssertionResult IsSubstring( |
| 1284 | const char* needle_expr, const char* haystack_expr, |
| 1285 | const char* needle, const char* haystack) { |
| 1286 | return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); |
| 1287 | } |
| 1288 | |
| 1289 | AssertionResult IsSubstring( |
| 1290 | const char* needle_expr, const char* haystack_expr, |
no test coverage detected