Searched refs:another_vector (Results 1 – 1 of 1) sorted by relevance
2487 vector<std::string> another_vector; in TEST() local2488 another_vector.push_back("fee"); in TEST()2489 EXPECT_THAT(another_vector, Each(std::string("fee"))); in TEST()2490 another_vector.push_back("fie"); in TEST()2491 another_vector.push_back("foe"); in TEST()2492 another_vector.push_back("fum"); in TEST()2493 EXPECT_THAT(another_vector, Not(Each(std::string("fee")))); in TEST()