Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/UnitTest++/src/TestResults.h')
-rw-r--r--src/testing/UnitTest++/src/TestResults.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/testing/UnitTest++/src/TestResults.h b/src/testing/UnitTest++/src/TestResults.h
deleted file mode 100644
index 8ef7fda..0000000
--- a/src/testing/UnitTest++/src/TestResults.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef UNITTEST_TESTRESULTS_H
-#define UNITTEST_TESTRESULTS_H
-
-namespace UnitTest {
-
-class TestReporter;
-class TestDetails;
-
-class TestResults
-{
-public:
- explicit TestResults(TestReporter* reporter = 0);
-
- void OnTestStart(TestDetails const& test);
- void OnTestFailure(TestDetails const& test, char const* failure);
- void OnTestFinish(TestDetails const& test, float secondsElapsed);
-
- int GetTotalTestCount() const;
- int GetFailedTestCount() const;
- int GetFailureCount() const;
-
-private:
- TestReporter* m_testReporter;
- int m_totalTestCount;
- int m_failedTestCount;
- int m_failureCount;
-
- bool m_currentTestFailed;
-
- TestResults(TestResults const&);
- TestResults& operator =(TestResults const&);
-};
-
-}
-
-#endif