| 3107 | } |
| 3108 | |
| 3109 | AssertionResult IsNotSubstring( |
| 3110 | const char* needle_expr, const char* haystack_expr, |
| 3111 | const char* needle, const char* haystack) { |
| 3112 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 3113 | } |
| 3114 | |
| 3115 | AssertionResult IsNotSubstring( |
| 3116 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected