| 53 | } |
| 54 | |
| 55 | void NormalMemoryReportFormatter::report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, size_t line) |
| 56 | { |
| 57 | result->print(StringFromFormat("\tDeallocation using %s of pointer: %p at %s:%d\n", allocator->free_name(), (void*) memory, file, (int) line).asCharString()); |
| 58 | } |
| 59 | |
| 60 | void NormalMemoryReportFormatter::report_testgroup_start(TestResult* result, UtestShell& test) |
| 61 | { |
no test coverage detected