aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HashTest.cpp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-08-07 09:33:37 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-07 09:33:37 -0700
commit469a3fe6edb3fb29acf6c03de662a6f00f6804b8 (patch)
treee3ed4991f9b28075e32fcafd0db742d48d050427 /tests/HashTest.cpp
parent3848427d884b72114854c8eef9662691f23fae7b (diff)
Add approxBytesUsed to hashes.
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);