| 23 | } |
| 24 | |
| 25 | void TeamCityTestOutput::printCurrentTestEnded(const TestResult& res) |
| 26 | { |
| 27 | if (!currtest_) |
| 28 | return; |
| 29 | |
| 30 | print("##teamcity[testFinished name='"); |
| 31 | printEscaped(currtest_->getName().asCharString()); |
| 32 | print("' duration='"); |
| 33 | print(res.getCurrentTestTotalExecutionTime()); |
| 34 | print("']\n"); |
| 35 | } |
| 36 | |
| 37 | void TeamCityTestOutput::printCurrentGroupStarted(const UtestShell& test) |
| 38 | { |
nothing calls this directly
no test coverage detected