| 2765 | // only), and return an appropriate error message when they fail. |
| 2766 | |
| 2767 | AssertionResult IsSubstring( |
| 2768 | const char* needle_expr, const char* haystack_expr, |
| 2769 | const char* needle, const char* haystack) { |
| 2770 | return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); |
| 2771 | } |
| 2772 | |
| 2773 | AssertionResult IsSubstring( |
| 2774 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected