| 2777 | } |
| 2778 | |
| 2779 | AssertionResult IsNotSubstring( |
| 2780 | const char* needle_expr, const char* haystack_expr, |
| 2781 | const char* needle, const char* haystack) { |
| 2782 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 2783 | } |
| 2784 | |
| 2785 | AssertionResult IsNotSubstring( |
| 2786 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected