Searched refs:another_vector (Results 1 – 1 of 1) sorted by relevance
6328 vector<std::string> another_vector; in TEST() local6329 another_vector.push_back("fee"); in TEST()6330 EXPECT_THAT(another_vector, Each(std::string("fee"))); in TEST()6331 another_vector.push_back("fie"); in TEST()6332 another_vector.push_back("foe"); in TEST()6333 another_vector.push_back("fum"); in TEST()6334 EXPECT_THAT(another_vector, Not(Each(std::string("fee")))); in TEST()