| 95 | } |
| 96 | |
| 97 | void TestOutput::printCurrentTestStarted(const UtestShell& test) |
| 98 | { |
| 99 | if (verbose_ > level_quiet) print(test.getFormattedName().asCharString()); |
| 100 | |
| 101 | if (test.willRun()) { |
| 102 | setProgressIndicator("."); |
| 103 | } |
| 104 | else { |
| 105 | setProgressIndicator("!"); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | void TestOutput::printCurrentTestEnded(const TestResult& res) |
| 110 | { |
no test coverage detected