| 36 | }; |
| 37 | |
| 38 | TEST(MemoryReportAllocator, FunctionsAreForwardedForMallocAllocator) |
| 39 | { |
| 40 | allocator.setRealAllocator(getCurrentMallocAllocator()); |
| 41 | |
| 42 | STRCMP_EQUAL("malloc", allocator.alloc_name()); |
| 43 | STRCMP_EQUAL("free", allocator.free_name()); |
| 44 | } |
| 45 | |
| 46 | TEST(MemoryReportAllocator, keepingTrackOfActualAllocator) |
| 47 | { |
nothing calls this directly
no test coverage detected