2008-08-10 00:19:21 +02:00
|
|
|
#include "TableTestResult.hpp"
|
|
|
|
|
|
|
|
void TableTestResult::print(std::ostream& stream)
|
|
|
|
{
|
|
|
|
stream
|
|
|
|
<< "\n"
|
|
|
|
<< name() << "\t"
|
|
|
|
<< runTests() << "\t"
|
|
|
|
<< testFailures() << "\t"
|
|
|
|
<< testErrors() << "\t"
|
|
|
|
<< testSkips();
|
2010-01-11 18:02:11 +01:00
|
|
|
} // print
|