Home | History | Annotate | Download | only in test

Lines Matching refs:IsNotSubstring

138 using testing::IsNotSubstring;
2877 // Tests for ::testing::IsNotSubstring().
2879 // Tests that IsNotSubstring() returns the correct result when the input
2882 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack"));
2883 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles"));
2886 // Tests that IsNotSubstring() returns the correct result when the input
2889 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack"));
2890 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles"));
2893 // Tests that IsNotSubstring() generates the correct message when the input
2900 IsNotSubstring(
2907 // Tests that IsNotSubstring returns the correct result when the input
2910 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob"));
2911 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world")));
2914 // Tests that IsNotSubstring() generates the correct message when the input
2921 IsNotSubstring(
2930 // Tests that IsNotSubstring returns the correct result when the input
2934 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2935 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack")));