mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-14 08:01:49 +01:00
14 lines
257 B
C++
14 lines
257 B
C++
|
|
||
|
|
||
|
#include "TableTestResult.hpp"
|
||
|
|
||
|
void TableTestResult::print(std::ostream& stream)
|
||
|
{
|
||
|
stream
|
||
|
<< "\n"
|
||
|
<< name() << "\t"
|
||
|
<< runTests() << "\t"
|
||
|
<< testFailures() << "\t"
|
||
|
<< testErrors() << "\t"
|
||
|
<< testSkips();
|
||
|
} // print
|