Lines Matching refs:another_map
2183 map<std::string, int> another_map;
2184 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1)));
2185 another_map["fee"] = 1;
2186 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1)));
2187 another_map["fie"] = 2;
2188 another_map["foe"] = 3;
2189 another_map["fum"] = 4;
2190 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1))));
2191 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1))));
2192 EXPECT_THAT(another_map, Each(Pair(_, Gt(0))));
3075 map<std::string, int> another_map;
3076 another_map["fee"] = 1;
3077 another_map["fie"] = 2;
3078 another_map["foe"] = 3;
3079 another_map["fum"] = 4;
3080 EXPECT_THAT(another_map,
3082 EXPECT_THAT(another_map, Contains(pair<const std::string, int>("fie", 2)));