| 1825 | } |
| 1826 | |
| 1827 | AssertionResult IsNotSubstring(const char* needle_expr, |
| 1828 | const char* haystack_expr, const char* needle, |
| 1829 | const char* haystack) { |
| 1830 | return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); |
| 1831 | } |
| 1832 | |
| 1833 | AssertionResult IsNotSubstring(const char* needle_expr, |
| 1834 | const char* haystack_expr, const wchar_t* needle, |
no test coverage detected