| 1787 | } |
| 1788 | |
| 1789 | AssertionResult IsNotSubstring( |
| 1790 | const char* needle_expr, const char* haystack_expr, |
| 1791 | const char* needle, const char* haystack) { |
| 1792 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 1793 | } |
| 1794 | |
| 1795 | AssertionResult IsNotSubstring( |
| 1796 | const char* needle_expr, const char* haystack_expr, |
no test coverage detected