blob: 1f28652813d1cf6d545a9233aa07afd4739c7aec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef CPPUNIT_OUTPUTTER_H
#define CPPUNIT_OUTPUTTER_H
#include <cppunit/Portability.h>
namespace CppUnit
{
/*! \brief Abstract outputter to print test result summary.
* \ingroup WritingTestResult
*/
class CPPUNIT_API Outputter
{
public:
/// Destructor.
virtual ~Outputter() {}
virtual void write() =0;
};
// Inlines methods for Outputter:
// ------------------------------
} // namespace CppUnit
#endif // CPPUNIT_OUTPUTTER_H
|