Searched refs:m_empty (Results 1 – 1 of 1) sorted by relevance
1186 Matcher<const internal::StringView&> m_empty = StrEq(""); in TEST() local1187 EXPECT_TRUE(m_empty.Matches(internal::StringView(""))); in TEST()1188 EXPECT_TRUE(m_empty.Matches(internal::StringView())); in TEST()1189 EXPECT_FALSE(m_empty.Matches(internal::StringView("hello"))); in TEST()1317 const Matcher<std::string> m_empty = HasSubstr(""); in TEST() local1318 EXPECT_TRUE(m_empty.Matches(std::string())); in TEST()1319 EXPECT_TRUE(m_empty.Matches(std::string("not empty"))); in TEST()1334 const Matcher<const char*> m_empty = HasSubstr(""); in TEST() local1335 EXPECT_TRUE(m_empty.Matches("not empty")); in TEST()1336 EXPECT_TRUE(m_empty.Matches("")); in TEST()[all …]