| 1775 | // only), and return an appropriate error message when they fail. |
| 1776 | |
| 1777 | AssertionResult IsSubstring( |
| 1778 | const char* needle_expr, const char* haystack_expr, |
| 1779 | const char* needle, const char* haystack) { |
| 1780 | return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); |
| 1781 | } |
| 1782 | |
| 1783 | AssertionResult IsSubstring( |
| 1784 | const char* needle_expr, const char* haystack_expr, |
no test coverage detected