| 48 | } |
| 49 | |
| 50 | TEST(dmHashTable, EmtpyConstructor) |
| 51 | { |
| 52 | dmHashTable32<int> ht; |
| 53 | |
| 54 | EXPECT_EQ(0U, ht.Size()); |
| 55 | EXPECT_EQ(0U, ht.Capacity()); |
| 56 | EXPECT_EQ(true, ht.Full()); |
| 57 | EXPECT_EQ(true, ht.Empty()); |
| 58 | } |
| 59 | |
| 60 | TEST(dmHashTable, SimplePut) |
| 61 | { |
nothing calls this directly
no test coverage detected