Home
last modified time | relevance | path

Searched refs:another_map (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc2204 map<std::string, int> another_map; in TEST() local
2205 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST()
2206 another_map["fee"] = 1; in TEST()
2207 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST()
2208 another_map["fie"] = 2; in TEST()
2209 another_map["foe"] = 3; in TEST()
2210 another_map["fum"] = 4; in TEST()
2211 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1)))); in TEST()
2212 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1)))); in TEST()
2213 EXPECT_THAT(another_map, Each(Pair(_, Gt(0)))); in TEST()
[all …]