| 1293 | } |
| 1294 | |
| 1295 | AssertionResult IsNotSubstring( |
| 1296 | const char* needle_expr, const char* haystack_expr, |
| 1297 | const char* needle, const char* haystack) { |
| 1298 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 1299 | } |
| 1300 | |
| 1301 | AssertionResult IsNotSubstring( |
| 1302 | const char* needle_expr, const char* haystack_expr, |
no test coverage detected