Home | History | Annotate | Download | only in test

Lines Matching refs:IsNotSubstring

129 using testing::IsNotSubstring;
2570 // Tests for ::testing::IsNotSubstring().
2572 // Tests that IsNotSubstring() returns the correct result when the input
2575 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack"));
2576 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles"));
2579 // Tests that IsNotSubstring() returns the correct result when the input
2582 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack"));
2583 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles"));
2586 // Tests that IsNotSubstring() generates the correct message when the input
2593 IsNotSubstring(
2598 // Tests that IsNotSubstring returns the correct result when the input
2601 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob"));
2602 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world")));
2605 // Tests that IsNotSubstring() generates the correct message when the input
2612 IsNotSubstring(
2619 // Tests that IsNotSubstring returns the correct result when the input
2623 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2624 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack")));
5244 EXPECT_PRED_FORMAT2(IsNotSubstring,