Home | History | Annotate | Download | only in test

Lines Matching refs:another_vector

5375   vector<std::string> another_vector;
5376 another_vector.push_back("fee");
5377 EXPECT_THAT(another_vector, Each(std::string("fee")));
5378 another_vector.push_back("fie");
5379 another_vector.push_back("foe");
5380 another_vector.push_back("fum");
5381 EXPECT_THAT(another_vector, Not(Each(std::string("fee"))));