| 2593 | } |
| 2594 | |
| 2595 | AssertionResult IsNotSubstring( |
| 2596 | const char* needle_expr, const char* haystack_expr, |
| 2597 | const char* needle, const char* haystack) { |
| 2598 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 2599 | } |
| 2600 | |
| 2601 | AssertionResult IsNotSubstring( |
| 2602 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected