1
0
Fork 0
mirror of https://github.com/jezhiggins/arabica synced 2025-01-23 07:27:31 +01:00
arabica/tests/CppUnit/textui/TableTestResult.cpp

14 lines
257 B
C++
Raw Normal View History

#include "TableTestResult.hpp"
void TableTestResult::print(std::ostream& stream)
{
stream
<< "\n"
<< name() << "\t"
<< runTests() << "\t"
<< testFailures() << "\t"
<< testErrors() << "\t"
<< testSkips();
} // print