| 109 | } |
| 110 | |
| 111 | void JUnitTestOutput::printCurrentTestEnded(const TestResult& result) |
| 112 | { |
| 113 | impl_->results_.tail_->execTime_ = result.getCurrentTestTotalExecutionTime(); |
| 114 | impl_->results_.tail_->checkCount_ = result.getCheckCount(); |
| 115 | } |
| 116 | |
| 117 | void JUnitTestOutput::printTestsEnded(const TestResult& /*result*/) |
| 118 | { |
nothing calls this directly
no test coverage detected