From 6cf039eecc39a60ad333052af47b7d3d209f10d6 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Thu, 23 Dec 2021 10:52:31 -0800 Subject: [PATCH] Rename transaparent erase tests to include map in their name --- test/unordered/transparent_tests.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/unordered/transparent_tests.cpp b/test/unordered/transparent_tests.cpp index c53c2292..19b4ef10 100644 --- a/test/unordered/transparent_tests.cpp +++ b/test/unordered/transparent_tests.cpp @@ -687,7 +687,7 @@ multimap_erase_const_overload_compile_test() return map.erase(c); } -template void test_transparent_erase() +template void test_map_transparent_erase() { count_reset(); @@ -724,7 +724,7 @@ template void test_transparent_erase() BOOST_TEST_EQ(key::count_, expected_key_count); } -template void test_non_transparent_erase() +template void test_map_non_transparent_erase() { count_reset(); @@ -884,7 +884,7 @@ void test_unordered_map() test_transparent_count(); test_map_transparent_find(); test_transparent_equal_range(); - test_transparent_erase(); + test_map_transparent_erase(); test_transparent_extract(); } @@ -896,7 +896,7 @@ void test_unordered_map() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } @@ -909,7 +909,7 @@ void test_unordered_map() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } @@ -922,7 +922,7 @@ void test_unordered_map() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } } @@ -937,7 +937,7 @@ void test_unordered_multimap() test_transparent_count(); test_map_transparent_find(); test_transparent_equal_range(); - test_transparent_erase(); + test_map_transparent_erase(); test_transparent_extract(); } @@ -950,7 +950,7 @@ void test_unordered_multimap() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } @@ -963,7 +963,7 @@ void test_unordered_multimap() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } @@ -976,7 +976,7 @@ void test_unordered_multimap() test_non_transparent_count(); test_map_non_transparent_find(); test_non_transparent_equal_range(); - test_non_transparent_erase(); + test_map_non_transparent_erase(); test_non_transparent_extract(); } }