| 54 | |
| 55 | |
| 56 | TEST(NormalMemoryReportFormatter, mallocCreatesAnMallocCall) |
| 57 | { |
| 58 | formatter.report_alloc_memory(testResult, defaultMallocAllocator(), 10, memory01, "file", 9); |
| 59 | TESTOUTPUT_EQUAL(StringFromFormat("\tAllocation using malloc of size: 10 pointer: %p at file:9\n", (void*) memory01).asCharString()); |
| 60 | } |
| 61 | |
| 62 | TEST(NormalMemoryReportFormatter, freeCreatesAnFreeCall) |
| 63 | { |
nothing calls this directly
no test coverage detected