mirror of
https://github.com/jezhiggins/arabica
synced 2025-02-08 20:46:17 +01:00
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
|