mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-14 08:01:49 +01:00
07ef52f308
seperated table, which can be pasted into spreadsheet/google docs/etc.
14 lines
No EOL
257 B
C++
14 lines
No EOL
257 B
C++
|
|
|
|
#include "TableTestResult.hpp"
|
|
|
|
void TableTestResult::print(std::ostream& stream)
|
|
{
|
|
stream
|
|
<< "\n"
|
|
<< name() << "\t"
|
|
<< runTests() << "\t"
|
|
<< testFailures() << "\t"
|
|
<< testErrors() << "\t"
|
|
<< testSkips();
|
|
} // print
|