Searched refs:another_map (Results 1 - 1 of 1) sorted by relevance
/third_party/googletest/googlemock/test/ |
H A D | gmock-matchers-containers_test.cc | 2183 map<std::string, int> another_map; in TEST() local 2184 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 2185 another_map["fee"] = 1; in TEST() 2186 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 2187 another_map["fie"] = 2; in TEST() 2188 another_map["foe"] = 3; in TEST() 2189 another_map["fum"] = 4; in TEST() 2190 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1)))); in TEST() 2191 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1)))); in TEST() 2192 EXPECT_THAT(another_map, Eac in TEST() 3075 map<std::string, int> another_map; TEST() local [all...] |
Completed in 8 milliseconds