Menu

[r236]: / trunk / cppunit / include / cppunit / Outputter.h  Maximize  Restore  History

Download this file

32 lines (19 with data), 450 Bytes

 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
MongoDB Logo MongoDB