Searched refs:another_vector (Results 1 – 1 of 1) sorted by relevance
2178 vector<std::string> another_vector; in TEST() local2179 another_vector.push_back("fee"); in TEST()2180 EXPECT_THAT(another_vector, Each(std::string("fee"))); in TEST()2181 another_vector.push_back("fie"); in TEST()2182 another_vector.push_back("foe"); in TEST()2183 another_vector.push_back("fum"); in TEST()2184 EXPECT_THAT(another_vector, Not(Each(std::string("fee")))); in TEST()