arabica/tests/CppUnit/textui/TableTestResult.cpp
jez 07ef52f308 Added -table option to test executables. It outputs the results as a tab
seperated table, which can be pasted into spreadsheet/google docs/etc.
2008-08-09 23:19:21 +01:00

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