CppUnit project page FAQ

TestPlugInDefaultImpl.h
Go to the documentation of this file.
1 #ifndef CPPUNIT_PLUGIN_TESTPLUGINADAPTER
2 #define CPPUNIT_PLUGIN_TESTPLUGINADAPTER
3 
4 #include <cppunit/Portability.h>
5 
6 #if !defined(CPPUNIT_NO_TESTPLUGIN)
7 
9 
10 #if CPPUNIT_NEED_DLL_DECL
11 #pragma warning( push )
12 #pragma warning( disable: 4251 4660 ) // X needs to have dll-interface to be used by clients of class Z
13 #endif
14 
16 
17 
18 class TestSuite;
19 
20 
32 {
33 public:
35 
36  virtual ~TestPlugInDefaultImpl();
37 
38  void initialize( TestFactoryRegistry *registry,
39  const PlugInParameters &parameters );
40 
41  void addListener( TestResult *eventManager );
42 
43  void removeListener( TestResult *eventManager );
44 
45  void addXmlOutputterHooks( XmlOutputter *outputter );
46 
48 
49  void uninitialize( TestFactoryRegistry *registry );
50 };
51 
52 
54 
55 #if CPPUNIT_NEED_DLL_DECL
56 #pragma warning( pop )
57 #endif
58 
59 #endif // !defined(CPPUNIT_NO_TESTPLUGIN)
60 
61 #endif // CPPUNIT_PLUGIN_TESTPLUGINADAPTER
#define CPPUNIT_API
Definition: CppUnitApi.h:27
#define CPPUNIT_NS_END
Definition: Portability.h:106
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:105
Test plug-ins parameters.
Definition: PlugInParameters.h:16
Registry for TestFactory.
Definition: TestFactoryRegistry.h:76
Default implementation of test plug-in interface.
Definition: TestPlugInDefaultImpl.h:32
Manages TestListener.
Definition: TestResult.h:48
A Composite of Tests.
Definition: TestSuite.h:41
Outputs a TestResultCollector in XML format.
Definition: XmlOutputter.h:40
Test plug-in interface.
Definition: TestPlugIn.h:44
virtual void removeXmlOutputterHooks()=0
Called when the XmlOutputter is destroyed.
virtual void addXmlOutputterHooks(CPPUNIT_NS::XmlOutputter *outputter)=0
Provides a way for the plug-in to register some XmlOutputterHook.
virtual void uninitialize(CPPUNIT_NS::TestFactoryRegistry *registry)=0
Called just before unloading the dynamic library.
virtual void removeListener(CPPUNIT_NS::TestResult *eventManager)=0
Gives a chance to the plug-in to remove its registered TestListener.
virtual void addListener(CPPUNIT_NS::TestResult *eventManager)=0
Gives a chance to the plug-in to register TestListener.
virtual void initialize(CPPUNIT_NS::TestFactoryRegistry *registry, const CPPUNIT_NS::PlugInParameters &parameters)=0
Called just after loading the dynamic library.

Send comments to:
CppUnit Developers