| 50 | }; |
| 51 | |
| 52 | TEST(TestMemoryAllocatorTest, SetCurrentNewAllocator) |
| 53 | { |
| 54 | allocator = new TestMemoryAllocator("new allocator for test"); |
| 55 | setCurrentNewAllocator(allocator); |
| 56 | POINTERS_EQUAL(allocator, getCurrentNewAllocator()); |
| 57 | } |
| 58 | |
| 59 | TEST(TestMemoryAllocatorTest, SetCurrentNewAllocatorToDefault) |
| 60 | { |
nothing calls this directly
no test coverage detected