Home | History | Annotate | Download | only in test

Lines Matching refs:IsNotSubstring

133 using testing::IsNotSubstring;
2745 // Tests for ::testing::IsNotSubstring().
2747 // Tests that IsNotSubstring() returns the correct result when the input
2750 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack"));
2751 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles"));
2754 // Tests that IsNotSubstring() returns the correct result when the input
2757 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack"));
2758 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles"));
2761 // Tests that IsNotSubstring() generates the correct message when the input
2768 IsNotSubstring(
2773 // Tests that IsNotSubstring returns the correct result when the input
2776 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob"));
2777 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world")));
2780 // Tests that IsNotSubstring() generates the correct message when the input
2787 IsNotSubstring(
2794 // Tests that IsNotSubstring returns the correct result when the input
2798 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2799 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack")));
5662 EXPECT_PRED_FORMAT2(IsNotSubstring,