| 3088 | } |
| 3089 | |
| 3090 | AssertionResult IsNotSubstring( |
| 3091 | const char* needle_expr, const char* haystack_expr, |
| 3092 | const char* needle, const char* haystack) { |
| 3093 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 3094 | } |
| 3095 | |
| 3096 | AssertionResult IsNotSubstring( |
| 3097 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected