| 66 | |
| 67 | |
| 68 | TEST(CodeMemoryReportFormatter, mallocCreatesAnMallocCall) |
| 69 | { |
| 70 | formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "file", 9); |
| 71 | TESTOUTPUT_EQUAL("\tvoid* file_9_1 = malloc(10);\n"); |
| 72 | } |
| 73 | |
| 74 | TEST(CodeMemoryReportFormatter, freeCreatesAnFreeCall) |
| 75 | { |
nothing calls this directly
no test coverage detected