Searched refs:another_vector (Results 1 – 1 of 1) sorted by relevance
2189 vector<std::string> another_vector; in TEST() local2190 another_vector.push_back("fee"); in TEST()2191 EXPECT_THAT(another_vector, Each(std::string("fee"))); in TEST()2192 another_vector.push_back("fie"); in TEST()2193 another_vector.push_back("foe"); in TEST()2194 another_vector.push_back("fum"); in TEST()2195 EXPECT_THAT(another_vector, Not(Each(std::string("fee")))); in TEST()