15 #include <unordered_map> 23 namespace container_internal {
26 using MapTypes = ::testing::Types<
27 std::unordered_map<int, int, StatefulTestingHash, StatefulTestingEqual,
28 Alloc<std::pair<const int, int>>>,
29 std::unordered_map<std::string, std::string, StatefulTestingHash,
31 Alloc<std::pair<const std::string, std::string>>>>;
33 INSTANTIATE_TYPED_TEST_SUITE_P(UnorderedMap, ConstructorTest, MapTypes);
34 INSTANTIATE_TYPED_TEST_SUITE_P(UnorderedMap, LookupTest, MapTypes);
35 INSTANTIATE_TYPED_TEST_SUITE_P(UnorderedMap, MembersTest, MapTypes);
36 INSTANTIATE_TYPED_TEST_SUITE_P(UnorderedMap, ModifiersTest, MapTypes);