| 2581 | // only), and return an appropriate error message when they fail. |
| 2582 | |
| 2583 | AssertionResult IsSubstring( |
| 2584 | const char* needle_expr, const char* haystack_expr, |
| 2585 | const char* needle, const char* haystack) { |
| 2586 | return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); |
| 2587 | } |
| 2588 | |
| 2589 | AssertionResult IsSubstring( |
| 2590 | const char* needle_expr, const char* haystack_expr, |
nothing calls this directly
no test coverage detected