From 70bddf12f5f92a71022c049fb6b8f4f8672af974 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 2 Sep 2015 13:49:59 +0200 Subject: Added GoogleTest and convert tests to us it (nw) --- 3rdparty/unittest-cpp/UnitTest++/TestList.h | 33 ----------------------------- 1 file changed, 33 deletions(-) delete mode 100644 3rdparty/unittest-cpp/UnitTest++/TestList.h (limited to '3rdparty/unittest-cpp/UnitTest++/TestList.h') diff --git a/3rdparty/unittest-cpp/UnitTest++/TestList.h b/3rdparty/unittest-cpp/UnitTest++/TestList.h deleted file mode 100644 index a001d3f22cf..00000000000 --- a/3rdparty/unittest-cpp/UnitTest++/TestList.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef UNITTEST_TESTLIST_H -#define UNITTEST_TESTLIST_H - -#include "HelperMacros.h" - -namespace UnitTest { - -class Test; - -class UNITTEST_LINKAGE TestList -{ -public: - TestList(); - void Add (Test* test); - - Test* GetHead() const; - -private: - Test* m_head; - Test* m_tail; -}; - - -class UNITTEST_LINKAGE ListAdder -{ -public: - ListAdder(TestList& list, Test* test); -}; - -} - - -#endif -- cgit v1.2.3