Rename transaparent erase tests to include map in their name

This commit is contained in:
Christian Mazakas
2021-12-23 10:52:31 -08:00
parent 79ab9800c0
commit 6cf039eecc

View File

@@ -687,7 +687,7 @@ multimap_erase_const_overload_compile_test()
return map.erase(c);
}
template <class UnorderedMap> void test_transparent_erase()
template <class UnorderedMap> void test_map_transparent_erase()
{
count_reset();
@@ -724,7 +724,7 @@ template <class UnorderedMap> void test_transparent_erase()
BOOST_TEST_EQ(key::count_, expected_key_count);
}
template <class UnorderedMap> void test_non_transparent_erase()
template <class UnorderedMap> void test_map_non_transparent_erase()
{
count_reset();
@@ -884,7 +884,7 @@ void test_unordered_map()
test_transparent_count<unordered_map>();
test_map_transparent_find<unordered_map>();
test_transparent_equal_range<unordered_map>();
test_transparent_erase<unordered_map>();
test_map_transparent_erase<unordered_map>();
test_transparent_extract<unordered_map>();
}
@@ -896,7 +896,7 @@ void test_unordered_map()
test_non_transparent_count<unordered_map>();
test_map_non_transparent_find<unordered_map>();
test_non_transparent_equal_range<unordered_map>();
test_non_transparent_erase<unordered_map>();
test_map_non_transparent_erase<unordered_map>();
test_non_transparent_extract<unordered_map>();
}
@@ -909,7 +909,7 @@ void test_unordered_map()
test_non_transparent_count<unordered_map>();
test_map_non_transparent_find<unordered_map>();
test_non_transparent_equal_range<unordered_map>();
test_non_transparent_erase<unordered_map>();
test_map_non_transparent_erase<unordered_map>();
test_non_transparent_extract<unordered_map>();
}
@@ -922,7 +922,7 @@ void test_unordered_map()
test_non_transparent_count<unordered_map>();
test_map_non_transparent_find<unordered_map>();
test_non_transparent_equal_range<unordered_map>();
test_non_transparent_erase<unordered_map>();
test_map_non_transparent_erase<unordered_map>();
test_non_transparent_extract<unordered_map>();
}
}
@@ -937,7 +937,7 @@ void test_unordered_multimap()
test_transparent_count<unordered_multimap>();
test_map_transparent_find<unordered_multimap>();
test_transparent_equal_range<unordered_multimap>();
test_transparent_erase<unordered_multimap>();
test_map_transparent_erase<unordered_multimap>();
test_transparent_extract<unordered_multimap>();
}
@@ -950,7 +950,7 @@ void test_unordered_multimap()
test_non_transparent_count<unordered_multimap>();
test_map_non_transparent_find<unordered_multimap>();
test_non_transparent_equal_range<unordered_multimap>();
test_non_transparent_erase<unordered_multimap>();
test_map_non_transparent_erase<unordered_multimap>();
test_non_transparent_extract<unordered_multimap>();
}
@@ -963,7 +963,7 @@ void test_unordered_multimap()
test_non_transparent_count<unordered_multimap>();
test_map_non_transparent_find<unordered_multimap>();
test_non_transparent_equal_range<unordered_multimap>();
test_non_transparent_erase<unordered_multimap>();
test_map_non_transparent_erase<unordered_multimap>();
test_non_transparent_extract<unordered_multimap>();
}
@@ -976,7 +976,7 @@ void test_unordered_multimap()
test_non_transparent_count<unordered_multimap>();
test_map_non_transparent_find<unordered_multimap>();
test_non_transparent_equal_range<unordered_multimap>();
test_non_transparent_erase<unordered_multimap>();
test_map_non_transparent_erase<unordered_multimap>();
test_non_transparent_extract<unordered_multimap>();
}
}