| 10 | } |
| 11 | |
| 12 | void TeamCityTestOutput::printCurrentTestStarted(const UtestShell& test) |
| 13 | { |
| 14 | print("##teamcity[testStarted name='"); |
| 15 | printEscaped(test.getName().asCharString()); |
| 16 | print("']\n"); |
| 17 | if (!test.willRun()) { |
| 18 | print("##teamcity[testIgnored name='"); |
| 19 | printEscaped(test.getName().asCharString()); |
| 20 | print("']\n"); |
| 21 | } |
| 22 | currtest_ = &test; |
| 23 | } |
| 24 | |
| 25 | void TeamCityTestOutput::printCurrentTestEnded(const TestResult& res) |
| 26 | { |
nothing calls this directly
no test coverage detected