| 73 | {} |
| 74 | |
| 75 | void |
| 76 | TextOutput::finished(int tests, const Time& time) |
| 77 | { |
| 78 | _stream << "Total: " << tests << " tests, " |
| 79 | << correct(tests, _total_errors) << "% correct" |
| 80 | << " in " << time << " seconds" << endl; |
| 81 | } |
| 82 | |
| 83 | void |
| 84 | TextOutput::suite_start(int tests, const string& name) |