mirror of
https://github.com/boostorg/unordered.git
synced 2025-10-03 11:11:01 +02:00
Rename transaparent erase tests to include map in their name
This commit is contained in:
@@ -687,7 +687,7 @@ multimap_erase_const_overload_compile_test()
|
|||||||
return map.erase(c);
|
return map.erase(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class UnorderedMap> void test_transparent_erase()
|
template <class UnorderedMap> void test_map_transparent_erase()
|
||||||
{
|
{
|
||||||
count_reset();
|
count_reset();
|
||||||
|
|
||||||
@@ -724,7 +724,7 @@ template <class UnorderedMap> void test_transparent_erase()
|
|||||||
BOOST_TEST_EQ(key::count_, expected_key_count);
|
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();
|
count_reset();
|
||||||
|
|
||||||
@@ -884,7 +884,7 @@ void test_unordered_map()
|
|||||||
test_transparent_count<unordered_map>();
|
test_transparent_count<unordered_map>();
|
||||||
test_map_transparent_find<unordered_map>();
|
test_map_transparent_find<unordered_map>();
|
||||||
test_transparent_equal_range<unordered_map>();
|
test_transparent_equal_range<unordered_map>();
|
||||||
test_transparent_erase<unordered_map>();
|
test_map_transparent_erase<unordered_map>();
|
||||||
test_transparent_extract<unordered_map>();
|
test_transparent_extract<unordered_map>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -896,7 +896,7 @@ void test_unordered_map()
|
|||||||
test_non_transparent_count<unordered_map>();
|
test_non_transparent_count<unordered_map>();
|
||||||
test_map_non_transparent_find<unordered_map>();
|
test_map_non_transparent_find<unordered_map>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_map>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -909,7 +909,7 @@ void test_unordered_map()
|
|||||||
test_non_transparent_count<unordered_map>();
|
test_non_transparent_count<unordered_map>();
|
||||||
test_map_non_transparent_find<unordered_map>();
|
test_map_non_transparent_find<unordered_map>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_map>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -922,7 +922,7 @@ void test_unordered_map()
|
|||||||
test_non_transparent_count<unordered_map>();
|
test_non_transparent_count<unordered_map>();
|
||||||
test_map_non_transparent_find<unordered_map>();
|
test_map_non_transparent_find<unordered_map>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_map>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -937,7 +937,7 @@ void test_unordered_multimap()
|
|||||||
test_transparent_count<unordered_multimap>();
|
test_transparent_count<unordered_multimap>();
|
||||||
test_map_transparent_find<unordered_multimap>();
|
test_map_transparent_find<unordered_multimap>();
|
||||||
test_transparent_equal_range<unordered_multimap>();
|
test_transparent_equal_range<unordered_multimap>();
|
||||||
test_transparent_erase<unordered_multimap>();
|
test_map_transparent_erase<unordered_multimap>();
|
||||||
test_transparent_extract<unordered_multimap>();
|
test_transparent_extract<unordered_multimap>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -950,7 +950,7 @@ void test_unordered_multimap()
|
|||||||
test_non_transparent_count<unordered_multimap>();
|
test_non_transparent_count<unordered_multimap>();
|
||||||
test_map_non_transparent_find<unordered_multimap>();
|
test_map_non_transparent_find<unordered_multimap>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_multimap>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -963,7 +963,7 @@ void test_unordered_multimap()
|
|||||||
test_non_transparent_count<unordered_multimap>();
|
test_non_transparent_count<unordered_multimap>();
|
||||||
test_map_non_transparent_find<unordered_multimap>();
|
test_map_non_transparent_find<unordered_multimap>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_multimap>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -976,7 +976,7 @@ void test_unordered_multimap()
|
|||||||
test_non_transparent_count<unordered_multimap>();
|
test_non_transparent_count<unordered_multimap>();
|
||||||
test_map_non_transparent_find<unordered_multimap>();
|
test_map_non_transparent_find<unordered_multimap>();
|
||||||
test_non_transparent_equal_range<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>();
|
test_non_transparent_extract<unordered_multimap>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user