| 19 | #include "../block_allocator.h" |
| 20 | |
| 21 | TEST(BlockAllocator, CreateDestroy) |
| 22 | { |
| 23 | dmBlockAllocator::HContext context = dmBlockAllocator::CreateContext(); |
| 24 | ASSERT_NE((dmBlockAllocator::HContext)0, context); |
| 25 | dmBlockAllocator::DeleteContext(context); |
| 26 | } |
| 27 | |
| 28 | TEST(BlockAllocator, TestReuse) |
| 29 | { |
nothing calls this directly
no test coverage detected