summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/unittest-cpp/tests/TestTest.cpp
diff options
context:
space:
mode:
author ImJezze <jezze@gmx.net>2015-10-20 21:34:36 +0200
committer ImJezze <jezze@gmx.net>2015-10-20 21:34:36 +0200
commita7b8acbe3eebcf17367baa642375cfa47ae4ea85 (patch)
tree854b859d6176802c0278f4b00de3f7c774e02dda /3rdparty/unittest-cpp/tests/TestTest.cpp
parent4610935e796661874bb4ee7ec6536d9423aeb7be (diff)
parent74aae76c4e3e257f99d139c4febb5d86d1419e50 (diff)
Merge pull request #6 from mamedev/master
Sync to base master
Diffstat (limited to '3rdparty/unittest-cpp/tests/TestTest.cpp')
-rw-r--r--3rdparty/unittest-cpp/tests/TestTest.cpp133
1 files changed, 0 insertions, 133 deletions
diff --git a/3rdparty/unittest-cpp/tests/TestTest.cpp b/3rdparty/unittest-cpp/tests/TestTest.cpp
deleted file mode 100644
index 49529eb0405..00000000000
--- a/3rdparty/unittest-cpp/tests/TestTest.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-#include "UnitTest++/UnitTestPP.h"
-#include "UnitTest++/TestReporter.h"
-#include "UnitTest++/TimeHelpers.h"
-#include "ScopedCurrentTest.h"
-
-using namespace UnitTest;
-
-namespace {
-
-TEST(PassingTestHasNoFailures)
-{
- class PassingTest : public Test
- {
- public:
- PassingTest() : Test("passing") {}
- virtual void RunImpl() const
- {
- CHECK(true);
- }
- };
-
- TestResults results;
- {
- ScopedCurrentTest scopedResults(results);
- PassingTest().Run();
- }
-
- CHECK_EQUAL(0, results.GetFailureCount());
-}
-
-
-TEST(FailingTestHasFailures)
-{
- class FailingTest : public Test
- {
- public:
- FailingTest() : Test("failing") {}
- virtual void RunImpl() const
- {
- CHECK(false);
- }
- };
-
- TestResults results;
- {
- ScopedCurrentTest scopedResults(results);
- FailingTest().Run();
- }
-
- CHECK_EQUAL(1, results.GetFailureCount());
-}
-
-#ifndef UNITTEST_NO_EXCEPTIONS
-TEST(ThrowingTestsAreReportedAsFailures)
-{
- class CrashingTest : public Test
- {
- public:
- CrashingTest() : Test("throwing") {}
- virtual void RunImpl() const
- {
- throw "Blah";
- }
- };
-
- TestResults results;
- {
- ScopedCurrentTest scopedResult(results);
- CrashingTest().Run();
- }
-
- CHECK_EQUAL(1, results.GetFailureCount());
-}
-
-#if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32)
-// Skip this test in debug because some debuggers don't like it.
-#if defined(NDEBUG)
-TEST(CrashingTestsAreReportedAsFailures)
-{
- class CrashingTest : public Test
- {
- public:
- CrashingTest() : Test("crashing") {}
- virtual void RunImpl() const
- {
-
- reinterpret_cast< void (*)() >(0)();
- }
- };
-
- TestResults results;
- {
- ScopedCurrentTest scopedResult(results);
- CrashingTest().Run();
- }
-
- CHECK_EQUAL(1, results.GetFailureCount());
-}
-#endif
-#endif
-#endif
-
-TEST(TestWithUnspecifiedSuiteGetsDefaultSuite)
-{
- Test test("test");
- CHECK(test.m_details.suiteName != NULL);
- CHECK_EQUAL("DefaultSuite", test.m_details.suiteName);
-}
-
-TEST(TestReflectsSpecifiedSuiteName)
-{
- Test test("test", "testSuite");
- CHECK(test.m_details.suiteName != NULL);
- CHECK_EQUAL("testSuite", test.m_details.suiteName);
-}
-
-void Fail()
-{
- CHECK(false);
-}
-
-TEST(OutOfCoreCHECKMacrosCanFailTests)
-{
- TestResults results;
- {
- ScopedCurrentTest scopedResult(results);
- Fail();
- }
-
- CHECK_EQUAL(1, results.GetFailureCount());
-}
-
-}