예제 #1
0
 void assertHashMapSizeEqualTo(int count) {
     ASSERT_FALSE(hashMap.empty());
     ASSERT_EQ(count, hashMap.size());
 }
예제 #2
0
 void assertThatHashMapIsEmpty() {
     ASSERT_TRUE(hashMap.empty());
     ASSERT_EQ(0, hashMap.size());
 }