| 22 | #include <set> |
| 23 | |
| 24 | TEST(dmSet, Constructor) |
| 25 | { |
| 26 | dmSet<uint32_t> s; |
| 27 | ASSERT_EQ(0u, s.Capacity()); |
| 28 | ASSERT_EQ(0u, s.Size()); |
| 29 | ASSERT_EQ(true, s.Full()); |
| 30 | ASSERT_EQ(true, s.Empty()); |
| 31 | ASSERT_EQ((uint32_t*)0, s.Begin()); |
| 32 | ASSERT_EQ((uint32_t*)0, s.End()); |
| 33 | } |
| 34 | |
| 35 | TEST(dmSet, Simple) |
| 36 | { |
nothing calls this directly
no test coverage detected