Home | History | Annotate | Download | only in test

Lines Matching refs:IsNotSubstring

221 using testing::IsNotSubstring;
2600 // Tests for ::testing::IsNotSubstring().
2602 // Tests that IsNotSubstring() returns the correct result when the input
2605 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack"));
2606 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles"));
2609 // Tests that IsNotSubstring() returns the correct result when the input
2612 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack"));
2613 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles"));
2616 // Tests that IsNotSubstring() generates the correct message when the input
2623 IsNotSubstring(
2628 // Tests that IsNotSubstring returns the correct result when the input
2631 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob"));
2632 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world")));
2635 // Tests that IsNotSubstring() generates the correct message when the input
2642 IsNotSubstring(
2649 // Tests that IsNotSubstring returns the correct result when the input
2653 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2654 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack")));
5517 EXPECT_PRED_FORMAT2(IsNotSubstring,