Searched refs:another_map (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-generated-matchers_test.cc | 1202 map<std::string, int> another_map; in TEST() local 1203 another_map["fee"] = 1; in TEST() 1204 another_map["fie"] = 2; in TEST() 1205 another_map["foe"] = 3; in TEST() 1206 another_map["fum"] = 4; in TEST() 1207 EXPECT_THAT(another_map, in TEST() 1209 EXPECT_THAT(another_map, Contains(pair<const std::string, int>("fie", 2))); in TEST()
|
| H A D | gmock-matchers_test.cc | 6343 map<std::string, int> another_map; in TEST() local 6344 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 6345 another_map["fee"] = 1; in TEST() 6346 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 6347 another_map["fie"] = 2; in TEST() 6348 another_map["foe"] = 3; in TEST() 6349 another_map["fum"] = 4; in TEST() 6350 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1)))); in TEST() 6351 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1)))); in TEST() 6352 EXPECT_THAT(another_map, Each(Pair(_, Gt(0)))); in TEST()
|