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

Send comments to:
CppUnit Developers