From fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd Mon Sep 17 00:00:00 2001 From: dan miller Date: Fri, 19 Oct 2007 05:20:07 +0000 Subject: dont ask --- .../tests/CppTestHarness/HTMLTestReporter.h | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 libraries/ode-0.9/tests/CppTestHarness/HTMLTestReporter.h (limited to 'libraries/ode-0.9/tests/CppTestHarness/HTMLTestReporter.h') diff --git a/libraries/ode-0.9/tests/CppTestHarness/HTMLTestReporter.h b/libraries/ode-0.9/tests/CppTestHarness/HTMLTestReporter.h deleted file mode 100644 index 3a23039..0000000 --- a/libraries/ode-0.9/tests/CppTestHarness/HTMLTestReporter.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef HTML_TEST_REPORTER -#define HTML_TEST_REPORTER - -#include "TestReporter.h" -#include - -namespace CppTestHarness -{ - -class HTMLTestReporter : public TestReporter -{ -public: - 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); - -private: - typedef std::vector MessageList; - - struct ResultRecord - { - std::string testName; - bool failed; - MessageList failureMessages; - }; - - MessageList m_failureMessages; - - typedef std::vector ResultList; - ResultList m_results; -}; - -} - -#endif //HTML_TEST_REPORTER - -- cgit v1.1