Lines Matching full:hello
342 EXPECT_FALSE(m1.Matches("hello"));
346 EXPECT_FALSE(m2.Matches("hello"));
354 EXPECT_FALSE(m1.Matches("hello"));
358 EXPECT_FALSE(m2.Matches("hello"));
800 Matcher<const string&> m1 = Lt("Hello");
802 EXPECT_FALSE(m1.Matches("Hello"));
803 EXPECT_FALSE(m1.Matches("Hello, world!"));
996 Matcher<const char*> m = StrEq(string("Hello"));
997 EXPECT_TRUE(m.Matches("Hello"));
998 EXPECT_FALSE(m.Matches("hello"));
1001 Matcher<const string&> m2 = StrEq("Hello");
1002 EXPECT_TRUE(m2.Matches("Hello"));
1021 Matcher<const char*> m = StrNe("Hello");
1024 EXPECT_FALSE(m.Matches("Hello"));
1026 Matcher<string> m2 = StrNe(string("Hello"));
1027 EXPECT_TRUE(m2.Matches("hello"));
1028 EXPECT_FALSE(m2.Matches("Hello"));
1037 Matcher<const char*> m = StrCaseEq(string("Hello"));
1038 EXPECT_TRUE(m.Matches("Hello"));
1039 EXPECT_TRUE(m.Matches("hello"));
1043 Matcher<const string&> m2 = StrCaseEq("Hello");
1044 EXPECT_TRUE(m2.Matches("hello"));
1079 Matcher<const char*> m = StrCaseNe("Hello");
1082 EXPECT_FALSE(m.Matches("Hello"));
1083 EXPECT_FALSE(m.Matches("hello"));
1085 Matcher<string> m2 = StrCaseNe(string("Hello"));
1087 EXPECT_FALSE(m2.Matches("Hello"));
1373 Matcher<const wchar_t*> m = StrEq(::std::wstring(L"Hello"));
1374 EXPECT_TRUE(m.Matches(L"Hello"));
1375 EXPECT_FALSE(m.Matches(L"hello"));
1378 Matcher<const ::std::wstring&> m2 = StrEq(L"Hello");
1379 EXPECT_TRUE(m2.Matches(L"Hello"));
1414 Matcher<const wchar_t*> m = StrNe(L"Hello");
1417 EXPECT_FALSE(m.Matches(L"Hello"));
1419 Matcher< ::std::wstring> m2 = StrNe(::std::wstring(L"Hello"));
1420 EXPECT_TRUE(m2.Matches(L"hello"));
1421 EXPECT_FALSE(m2.Matches(L"Hello"));
1430 Matcher<const wchar_t*> m = StrCaseEq(::std::wstring(L"Hello"));
1431 EXPECT_TRUE(m.Matches(L"Hello"));
1432 EXPECT_TRUE(m.Matches(L"hello"));
1436 Matcher<const ::std::wstring&> m2 = StrCaseEq(L"Hello");
1437 EXPECT_TRUE(m2.Matches(L"hello"));
1472 Matcher<const wchar_t*> m = StrCaseNe(L"Hello");
1475 EXPECT_FALSE(m.Matches(L"Hello"));
1476 EXPECT_FALSE(m.Matches(L"hello"));
1478 Matcher< ::std::wstring> m2 = StrCaseNe(::std::wstring(L"Hello"));
1480 EXPECT_FALSE(m2.Matches(L"Hello"));
1564 Matcher<const wchar_t*> m = StrEq(::wstring(L"Hello"));
1565 EXPECT_TRUE(m.Matches(L"Hello"));
1566 EXPECT_FALSE(m.Matches(L"hello"));
1569 Matcher<const ::wstring&> m2 = StrEq(L"Hello");
1570 EXPECT_TRUE(m2.Matches(L"Hello"));
1605 Matcher<const wchar_t*> m = StrNe(L"Hello");
1608 EXPECT_FALSE(m.Matches(L"Hello"));
1610 Matcher< ::wstring> m2 = StrNe(::wstring(L"Hello"));
1611 EXPECT_TRUE(m2.Matches(L"hello"));
1612 EXPECT_FALSE(m2.Matches(L"Hello"));
1621 Matcher<const wchar_t*> m = StrCaseEq(::wstring(L"Hello"));
1622 EXPECT_TRUE(m.Matches(L"Hello"));
1623 EXPECT_TRUE(m.Matches(L"hello"));
1627 Matcher<const ::wstring&> m2 = StrCaseEq(L"Hello");
1628 EXPECT_TRUE(m2.Matches(L"hello"));
1663 Matcher<const wchar_t*> m = StrCaseNe(L"Hello");
1666 EXPECT_FALSE(m.Matches(L"Hello"));
1667 EXPECT_FALSE(m.Matches(L"hello"));
1669 Matcher< ::wstring> m2 = StrCaseNe(::wstring(L"Hello"));
1671 EXPECT_FALSE(m2.Matches(L"Hello"));
2387 EXPECT_THAT("Hello", StartsWith("Hell"));
2435 // ASSERT_THAT("hello", starts_with_he) fails to compile with Nokia's
2441 // With ASSERT_THAT("hello"...) changed to ASSERT_THAT(string("hello") ... )
2447 ASSERT_THAT("hello", starts_with_he);
3689 { "hi", "hello", "ciao" },
3694 { "hi", "hello", "ciao" },