diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/common/hashmap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/common/hashmap.h b/test/common/hashmap.h index 883e965065..5aa609bc00 100644 --- a/test/common/hashmap.h +++ b/test/common/hashmap.h @@ -37,6 +37,9 @@ class HashMapTestSuite : public CxxTest::TestSuite TS_ASSERT( !container.contains(1) ); container[1] = 42; TS_ASSERT( container.contains(1) ); + container.erase(0); + container.erase(1); + TS_ASSERT( container.empty() ); } void test_lookup( void ) |