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, 51 insertions, 0 deletions
diff --git a/src/cppunit/TestPlugInAdapter.cpp b/src/cppunit/TestPlugInAdapter.cpp
new file mode 100644
index 0000000..87f761a
--- /dev/null
+++ b/src/cppunit/TestPlugInAdapter.cpp
@@ -0,0 +1,51 @@
+#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)