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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc1192 map<string, int> another_map; local
1193 another_map["fee"] = 1;
1194 another_map["fie"] = 2;
1195 another_map["foe"] = 3;
1196 another_map["fum"] = 4;
1197 EXPECT_THAT(another_map, Contains(pair<const string, int>(string("fee"), 1)));
1198 EXPECT_THAT(another_map, Contains(pair<const string, int>("fie", 2)));
H A Dgmock-matchers_test.cc5384 map<string, int> another_map; local
5385 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5386 another_map["fee"] = 1;
5387 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5388 another_map["fie"] = 2;
5389 another_map["foe"] = 3;
5390 another_map["fum"] = 4;
5391 EXPECT_THAT(another_map, Not(Each(make_pair(string("fee"), 1))));
5392 EXPECT_THAT(another_map, Not(Each(make_pair(string("fum"), 1))));
5393 EXPECT_THAT(another_map, Eac
[all...]

Completed in 43 milliseconds