Searched refs:another_map (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock-matchers-containers_test.cc | 2502 map<std::string, int> another_map; in TEST() local 2503 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 2504 another_map["fee"] = 1; in TEST() 2505 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 2506 another_map["fie"] = 2; in TEST() 2507 another_map["foe"] = 3; in TEST() 2508 another_map["fum"] = 4; in TEST() 2509 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1)))); in TEST() 2510 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1)))); in TEST() 2511 EXPECT_THAT(another_map, Each(Pair(_, Gt(0)))); in TEST() [all …]
|