Home | History | Annotate | Download | only in test

Lines Matching full:issubstring

134 using testing::IsSubstring;
2681 // Tests for ::testing::IsSubstring().
2683 // Tests that IsSubstring() returns the correct result when the input
2686 EXPECT_FALSE(IsSubstring("", "", NULL, "a"));
2687 EXPECT_FALSE(IsSubstring("", "", "b", NULL));
2688 EXPECT_FALSE(IsSubstring("", "", "needle", "haystack"));
2690 EXPECT_TRUE(IsSubstring("", "", static_cast<const char*>(NULL), NULL));
2691 EXPECT_TRUE(IsSubstring("", "", "needle", "two needles"));
2694 // Tests that IsSubstring() returns the correct result when the input
2697 EXPECT_FALSE(IsSubstring("", "", kNull, L"a"));
2698 EXPECT_FALSE(IsSubstring("", "", L"b", kNull));
2699 EXPECT_FALSE(IsSubstring("", "", L"needle", L"haystack"));
2701 EXPECT_TRUE(IsSubstring("", "", static_cast<const wchar_t*>(NULL), NULL));
2702 EXPECT_TRUE(IsSubstring("", "", L"needle", L"two needles"));
2705 // Tests that IsSubstring() generates the correct message when the input
2712 IsSubstring("needle_expr", "haystack_expr",
2716 // Tests that IsSubstring returns the correct result when the input
2719 EXPECT_TRUE(IsSubstring("", "", std::string("hello"), "ahellob"));
2720 EXPECT_FALSE(IsSubstring("", "", "hello", std::string("world")));
2724 // Tests that IsSubstring returns the correct result when the input
2727 EXPECT_TRUE(IsSubstring("", "", ::std::wstring(L"needle"), L"two needles"));
2728 EXPECT_FALSE(IsSubstring("", "", L"needle", ::std::wstring(L"haystack")));
2731 // Tests that IsSubstring() generates the correct message when the input
2738 IsSubstring(
3543 EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure",
3545 EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does",
3562 EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure",
3564 EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does",
3566 EXPECT_PRED_FORMAT2(testing::IsSubstring, "other failure",
3581 EXPECT_PRED_FORMAT2(testing::IsSubstring, "foo",
3583 EXPECT_PRED_FORMAT2(testing::IsSubstring, "my message",
5660 EXPECT_PRED_FORMAT2(IsSubstring, expected_help_fragment, captured_stdout);