Add comments about nature of test

This commit is contained in:
LeonineKing1199
2021-11-29 14:55:18 -08:00
parent 8f1fc75fdf
commit 3eb2d3c4b3

View File

@ -165,6 +165,9 @@ template <class UnorderedMap> void test_transparent_find()
int const expected_key_count = 2 * n;
BOOST_TEST(key::count_ == expected_key_count);
// explicitly test `find()` and `find() const` separately
//
{
UnorderedMap& m = map;
@ -225,6 +228,9 @@ template <class UnorderedMap> void test_non_transparent_find()
BOOST_TEST(key::count_ == key_count);
// explicitly test `find()` and `find() const` separately
//
{
UnorderedMap& m = map;