summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/unittest-cpp/UnitTest++/TestMacros.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-02 13:49:59 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-02 13:50:20 +0200
commit70bddf12f5f92a71022c049fb6b8f4f8672af974 (patch)
treeda554cf16908c6092dcbc4c01598a318520b5384 /3rdparty/unittest-cpp/UnitTest++/TestMacros.h
parenta7943aa92f2c78c65c5313980c55357a31697b29 (diff)
Added GoogleTest and convert tests to us it (nw)
Diffstat (limited to '3rdparty/unittest-cpp/UnitTest++/TestMacros.h')
-rw-r--r--3rdparty/unittest-cpp/UnitTest++/TestMacros.h117
1 files changed, 0 insertions, 117 deletions
diff --git a/3rdparty/unittest-cpp/UnitTest++/TestMacros.h b/3rdparty/unittest-cpp/UnitTest++/TestMacros.h
deleted file mode 100644
index facc94e8019..00000000000
--- a/3rdparty/unittest-cpp/UnitTest++/TestMacros.h
+++ /dev/null
@@ -1,117 +0,0 @@
-#ifndef UNITTEST_TESTMACROS_H
-#define UNITTEST_TESTMACROS_H
-
-#include "Config.h"
-#include "TestSuite.h"
-#include "ExceptionMacros.h"
-#include "ExecuteTest.h"
-#include "AssertException.h"
-#include "TestDetails.h"
-#include "MemoryOutStream.h"
-
-#ifndef UNITTEST_POSIX
- #define UNITTEST_THROW_SIGNALS_POSIX_ONLY
-#else
- #include "Posix/SignalTranslator.h"
-#endif
-
-#ifdef TEST
- #error UnitTest++ redefines TEST
-#endif
-
-#ifdef TEST_EX
- #error UnitTest++ redefines TEST_EX
-#endif
-
-#ifdef TEST_FIXTURE_EX
- #error UnitTest++ redefines TEST_FIXTURE_EX
-#endif
-
-#define SUITE(Name) \
- namespace Suite##Name { \
- namespace UnitTestSuite { \
- inline char const* GetSuiteName () { \
- return #Name ; \
- } \
- } \
- } \
- namespace Suite##Name
-
-#define TEST_EX(Name, List) \
- class Test##Name : public UnitTest::Test \
- { \
- public: \
- Test##Name() : Test(#Name, UnitTestSuite::GetSuiteName(), __FILE__, __LINE__) {} \
- private: \
- virtual void RunImpl() const; \
- } test##Name##Instance; \
- \
- UnitTest::ListAdder adder##Name (List, &test##Name##Instance); \
- \
- void Test##Name::RunImpl() const
-
-
-#define TEST(Name) TEST_EX(Name, UnitTest::Test::GetTestList())
-
-
-#define TEST_FIXTURE_EX(Fixture, Name, List) \
- class Fixture##Name##Helper : public Fixture \
- { \
- public: \
- explicit Fixture##Name##Helper(UnitTest::TestDetails const& details) : m_details(details) {} \
- void RunImpl(); \
- UnitTest::TestDetails const& m_details; \
- private: \
- Fixture##Name##Helper(Fixture##Name##Helper const&); \
- Fixture##Name##Helper& operator =(Fixture##Name##Helper const&); \
- }; \
- \
- class Test##Fixture##Name : public UnitTest::Test \
- { \
- public: \
- Test##Fixture##Name() : Test(#Name, UnitTestSuite::GetSuiteName(), __FILE__, __LINE__) {} \
- private: \
- virtual void RunImpl() const; \
- } test##Fixture##Name##Instance; \
- \
- UnitTest::ListAdder adder##Fixture##Name (List, &test##Fixture##Name##Instance); \
- \
- void Test##Fixture##Name::RunImpl() const \
- { \
- volatile bool ctorOk = false; \
- UT_TRY \
- ({ \
- Fixture##Name##Helper fixtureHelper(m_details); \
- ctorOk = true; \
- UnitTest::ExecuteTest(fixtureHelper, m_details, false); \
- }) \
- UT_CATCH (UnitTest::AssertException, e, \
- { \
- (void)e; \
- }) \
- UT_CATCH (std::exception, e, \
- { \
- UnitTest::MemoryOutStream stream; \
- stream << "Unhandled exception: " << e.what(); \
- UnitTest::CurrentTest::Results()->OnTestFailure(m_details, stream.GetText()); \
- }) \
- UT_CATCH_ALL \
- ({ \
- if (ctorOk) \
- { \
- UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(m_details, __LINE__), \
- "Unhandled exception while destroying fixture " #Fixture); \
- } \
- else \
- { \
- UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(m_details, __LINE__), \
- "Unhandled exception while constructing fixture " #Fixture); \
- } \
- }) \
- } \
- void Fixture##Name##Helper::RunImpl()
-
-#define TEST_FIXTURE(Fixture,Name) TEST_FIXTURE_EX(Fixture, Name, UnitTest::Test::GetTestList())
-
-
-#endif