Searched refs:another_vector (Results 1 – 2 of 2) sorted by relevance
4038 vector<string> another_vector; in TEST() local4039 another_vector.push_back("fee"); in TEST()4040 EXPECT_THAT(another_vector, Each(string("fee"))); in TEST()4041 another_vector.push_back("fie"); in TEST()4042 another_vector.push_back("foe"); in TEST()4043 another_vector.push_back("fum"); in TEST()4044 EXPECT_THAT(another_vector, Not(Each(string("fee")))); in TEST()
6332 vector<std::string> another_vector; in TEST() local6333 another_vector.push_back("fee"); in TEST()6334 EXPECT_THAT(another_vector, Each(std::string("fee"))); in TEST()6335 another_vector.push_back("fie"); in TEST()6336 another_vector.push_back("foe"); in TEST()6337 another_vector.push_back("fum"); in TEST()6338 EXPECT_THAT(another_vector, Not(Each(std::string("fee")))); in TEST()