From 79eca25c945a535a7a0325999034bae17da92412 Mon Sep 17 00:00:00 2001 From: dan miller Date: Fri, 19 Oct 2007 05:15:33 +0000 Subject: resubmitting ode --- .../tests/CppTestHarness/PrintfTestReporter.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.h (limited to 'libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.h') diff --git a/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.h b/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.h new file mode 100644 index 0000000..8d4372a --- /dev/null +++ b/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.h @@ -0,0 +1,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 + -- cgit v1.1