mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
07ef52f308
seperated table, which can be pasted into spreadsheet/google docs/etc.
13 lines
No EOL
321 B
C++
13 lines
No EOL
321 B
C++
#ifndef CPPUNIT_TableTestResult_HPP
|
|
#define CPPUNIT_TableTestResult_HPP
|
|
|
|
#include "TextTestResult.h"
|
|
|
|
class TableTestResult : public TextTestResult
|
|
{
|
|
public:
|
|
TableTestResult(const std::string& name, bool verbose) : TextTestResult(name, verbose) { }
|
|
|
|
virtual void print(std::ostream& stream);
|
|
};
|
|
#endif |