| 190 | } |
| 191 | |
| 192 | void TestOutput::printTestRun(size_t number, size_t total) |
| 193 | { |
| 194 | if (total > 1) { |
| 195 | print("Test run "); |
| 196 | print(number); |
| 197 | print(" of "); |
| 198 | print(total); |
| 199 | print("\n"); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | void TestOutput::printFailure(const TestFailure& failure) |
| 204 | { |
no outgoing calls
no test coverage detected