aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HashTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/HashTest.cpp')
-rw-r--r--tests/HashTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/HashTest.cpp b/tests/HashTest.cpp
index 848986162d..f53faaf864 100644
--- a/tests/HashTest.cpp
+++ b/tests/HashTest.cpp
@@ -23,6 +23,8 @@ DEF_TEST(HashMap, r) {
map.set(3, 4.0);
REPORTER_ASSERT(r, map.count() == 1);
+ REPORTER_ASSERT(r, map.approxBytesUsed() > 0);
+
double* found = map.find(3);
REPORTER_ASSERT(r, found);
REPORTER_ASSERT(r, *found == 4.0);