f4ee276472
This is the version maintained by the freedesktop.org organisation and is documented at https://www.freedesktop.org/wiki/Software/cppunit/. All unnecessary files have been stripped out.
26 lines
368 B
C++
26 lines
368 B
C++
#ifndef CPPUNIT_OUTPUTTER_H
|
|
#define CPPUNIT_OUTPUTTER_H
|
|
|
|
#include <cppunit/Portability.h>
|
|
|
|
|
|
CPPUNIT_NS_BEGIN
|
|
|
|
|
|
/*! \brief Abstract outputter to print test result summary.
|
|
* \ingroup WritingTestResult
|
|
*/
|
|
class CPPUNIT_API Outputter
|
|
{
|
|
public:
|
|
/// Destructor.
|
|
virtual ~Outputter() {}
|
|
|
|
virtual void write() =0;
|
|
};
|
|
|
|
|
|
CPPUNIT_NS_END
|
|
|
|
|
|
#endif // CPPUNIT_OUTPUTTER_H
|