Searched refs:m_empty (Results 1 – 1 of 1) sorted by relevance
1242 Matcher<const internal::StringView&> m_empty = StrEq(""); in TEST() local1243 EXPECT_TRUE(m_empty.Matches(internal::StringView(""))); in TEST()1244 EXPECT_TRUE(m_empty.Matches(internal::StringView())); in TEST()1245 EXPECT_FALSE(m_empty.Matches(internal::StringView("hello"))); in TEST()1373 const Matcher<std::string> m_empty = HasSubstr(""); in TEST() local1374 EXPECT_TRUE(m_empty.Matches(std::string())); in TEST()1375 EXPECT_TRUE(m_empty.Matches(std::string("not empty"))); in TEST()1390 const Matcher<const char*> m_empty = HasSubstr(""); in TEST() local1391 EXPECT_TRUE(m_empty.Matches("not empty")); in TEST()1392 EXPECT_TRUE(m_empty.Matches("")); in TEST()[all …]