| 3076 | // only), and return an appropriate error message when they fail. |
| 3077 | |
| 3078 | AssertionResult IsSubstring( |
| 3079 | const char* needle_expr, const char* haystack_expr, |
| 3080 | const char* needle, const char* haystack) { |
| 3081 | return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); |
| 3082 | } |
| 3083 | |
| 3084 | AssertionResult IsSubstring( |
| 3085 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected