Searched refs:another_map (Results 1 – 4 of 4) sorted by relevance
/external/google-breakpad/src/testing/test/ |
D | gmock-generated-matchers_test.cc | 1047 map<string, int> another_map; in TEST() local 1048 another_map["fee"] = 1; in TEST() 1049 another_map["fie"] = 2; in TEST() 1050 another_map["foe"] = 3; in TEST() 1051 another_map["fum"] = 4; in TEST() 1052 EXPECT_THAT(another_map, Contains(pair<const string, int>(string("fee"), 1))); in TEST() 1053 EXPECT_THAT(another_map, Contains(pair<const string, int>("fie", 2))); in TEST()
|
D | gmock-matchers_test.cc | 4053 map<string, int> another_map; in TEST() local 4054 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1))); in TEST() 4055 another_map["fee"] = 1; in TEST() 4056 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1))); in TEST() 4057 another_map["fie"] = 2; in TEST() 4058 another_map["foe"] = 3; in TEST() 4059 another_map["fum"] = 4; in TEST() 4060 EXPECT_THAT(another_map, Not(Each(make_pair(string("fee"), 1)))); in TEST() 4061 EXPECT_THAT(another_map, Not(Each(make_pair(string("fum"), 1)))); in TEST() 4062 EXPECT_THAT(another_map, Each(Pair(_, Gt(0)))); in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-generated-matchers_test.cc | 1051 map<std::string, int> another_map; in TEST() local 1052 another_map["fee"] = 1; in TEST() 1053 another_map["fie"] = 2; in TEST() 1054 another_map["foe"] = 3; in TEST() 1055 another_map["fum"] = 4; in TEST() 1056 EXPECT_THAT(another_map, in TEST() 1058 EXPECT_THAT(another_map, Contains(pair<const std::string, int>("fie", 2))); in TEST()
|
D | gmock-matchers_test.cc | 6347 map<std::string, int> another_map; in TEST() local 6348 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 6349 another_map["fee"] = 1; in TEST() 6350 EXPECT_THAT(another_map, Each(make_pair(std::string("fee"), 1))); in TEST() 6351 another_map["fie"] = 2; in TEST() 6352 another_map["foe"] = 3; in TEST() 6353 another_map["fum"] = 4; in TEST() 6354 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fee"), 1)))); in TEST() 6355 EXPECT_THAT(another_map, Not(Each(make_pair(std::string("fum"), 1)))); in TEST() 6356 EXPECT_THAT(another_map, Each(Pair(_, Gt(0)))); in TEST()
|