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/PrintfTestReporter.cpp | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.cpp (limited to 'libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.cpp') diff --git a/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.cpp b/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.cpp deleted file mode 100644 index 68f7611..0000000 --- a/libraries/ode-0.9/tests/CppTestHarness/PrintfTestReporter.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include "PrintfTestReporter.h" - -#include - -namespace CppTestHarness -{ - -void PrintfTestReporter::ReportFailure(char const* file, int const line, std::string const failure) -{ - printf("%s(%d) : failure: %s\n", file, line, failure.c_str()); -} - -void PrintfTestReporter::ReportSingleResult(const std::string& /*testName*/, bool /*failed*/) -{ - //empty -} - -void PrintfTestReporter::ReportSummary(int const testCount, int const failureCount) -{ - printf("%d tests run.\n", testCount); - printf("%d failures.\n", failureCount); -} - -} - -- cgit v1.1