summaryrefslogtreecommitdiff
path: root/src/cppunit/TestPlugInAdapter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/TestPlugInAdapter.cpp')
-rw-r--r--src/cppunit/TestPlugInAdapter.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/cppunit/TestPlugInAdapter.cpp b/src/cppunit/TestPlugInAdapter.cpp
deleted file mode 100644
index 87f761a..0000000
--- a/src/cppunit/TestPlugInAdapter.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-#include <cppunit/Portability.h>
-
-#if !defined(CPPUNIT_NO_TESTPLUGIN)
-
-#include <cppunit/extensions/TestFactoryRegistry.h>
-#include <cppunit/TestSuite.h>
-#include <cppunit/plugin/TestPlugInAdapter.h>
-
-
-namespace CppUnit
-{
-
-TestPlugInAdapter::TestPlugInAdapter()
-{
-}
-
-
-TestPlugInAdapter::~TestPlugInAdapter()
-{
-}
-
-
-void
-TestPlugInAdapter::initialize( TestFactoryRegistry *registry,
- const Parameters &parameters )
-{
-}
-
-
-void
-TestPlugInAdapter::addListener( TestResult *eventManager )
-{
-}
-
-
-void
-TestPlugInAdapter::removeListener( TestResult *eventManager )
-{
-}
-
-
-void
-TestPlugInAdapter::uninitialize( TestFactoryRegistry *registry )
-{
-}
-
-
-} // namespace CppUnit
-
-
-#endif // !defined(CPPUNIT_NO_TESTPLUGIN)