Home | History | Annotate | Download | only in test

Lines Matching full:my_map

3634   map<int, std::string> my_map;
3635 my_map[0] = "a";
3636 my_map[1] = "b";
3642 const Matcher<const map<int, std::string>&> m = ContainerEq(my_map);
3643 my_map));
3868 map<const char*, int> my_map;
3870 my_map[bar] = 2;
3871 EXPECT_THAT(my_map, Each(make_pair(bar, 2)));