Lines Matching refs:IsNotSubstring
132 using testing::IsNotSubstring;
2630 // Tests for ::testing::IsNotSubstring().
2632 // Tests that IsNotSubstring() returns the correct result when the input
2635 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack"));
2636 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles"));
2639 // Tests that IsNotSubstring() returns the correct result when the input
2642 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack"));
2643 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles"));
2646 // Tests that IsNotSubstring() generates the correct message when the input
2653 IsNotSubstring(
2658 // Tests that IsNotSubstring returns the correct result when the input
2661 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob"));
2662 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world")));
2665 // Tests that IsNotSubstring() generates the correct message when the input
2672 IsNotSubstring(
2679 // Tests that IsNotSubstring returns the correct result when the input
2683 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2684 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack")));
5443 EXPECT_PRED_FORMAT2(IsNotSubstring,