arabica/tests/CppUnit/textui/TableTestResult.hpp
jez 07ef52f308 Added -table option to test executables. It outputs the results as a tab
seperated table, which can be pasted into spreadsheet/google docs/etc.
2008-08-09 23:19:21 +01:00

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