| 135 | } |
| 136 | |
| 137 | void MemoryReporterPlugin::postTestAction(UtestShell& test, TestResult& result) |
| 138 | { |
| 139 | if (formatter_ == NULLPTR) return; |
| 140 | |
| 141 | removeGlobalMemoryReportAllocators(); |
| 142 | formatter_->report_test_end(&result, test); |
| 143 | |
| 144 | if (test.getNext() == NULLPTR || test.getNext()->getGroup() != currentTestGroup_) |
| 145 | formatter_->report_testgroup_end(&result, test); |
| 146 | } |
nothing calls this directly
no test coverage detected