summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/CppUnit/cppunit/extensions/TestFactory.h')
m---------3rdParty/CppUnit0
-rw-r--r--3rdParty/CppUnit/cppunit/extensions/TestFactory.h27
2 files changed, 0 insertions, 27 deletions
diff --git a/3rdParty/CppUnit b/3rdParty/CppUnit
new file mode 160000
+Subproject b4c34eb947c6497c6387c55c7581ec875f4e7d4
diff --git a/3rdParty/CppUnit/cppunit/extensions/TestFactory.h b/3rdParty/CppUnit/cppunit/extensions/TestFactory.h
deleted file mode 100644
index 214d353..0000000
--- a/3rdParty/CppUnit/cppunit/extensions/TestFactory.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef CPPUNIT_EXTENSIONS_TESTFACTORY_H
-#define CPPUNIT_EXTENSIONS_TESTFACTORY_H
-
-#include <cppunit/Portability.h>
-
-CPPUNIT_NS_BEGIN
-
-
-class Test;
-
-/*! \brief Abstract Test factory.
- */
-class CPPUNIT_API TestFactory
-{
-public:
- virtual ~TestFactory() {}
-
- /*! Makes a new test.
- * \return A new Test.
- */
- virtual Test* makeTest() = 0;
-};
-
-
-CPPUNIT_NS_END
-
-#endif // CPPUNIT_EXTENSIONS_TESTFACTORY_H