blob: 8d4372ae7c15aced091134f977640f76e093361f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef PRINTF_TEST_REPORTER
#define PRINTF_TEST_REPORTER
#include "TestReporter.h"
namespace CppTestHarness
{
class PrintfTestReporter : public TestReporter
{
private:
virtual void ReportFailure(char const* file, int line, std::string failure);
virtual void ReportSingleResult(const std::string& testName, bool failed);
virtual void ReportSummary(int testCount, int failureCount);
};
}
#endif
|