~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to third-party/cppunit/cppunit/src/cppunit/TestPlugInDefaultImpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <cppunit/config/SourcePrefix.h>
2
 
 
3
 
#if !defined(CPPUNIT_NO_TESTPLUGIN)
4
 
 
5
 
#include <cppunit/TestSuite.h>
6
 
#include <cppunit/extensions/TestFactoryRegistry.h>
7
 
#include <cppunit/plugin/TestPlugInDefaultImpl.h>
8
 
 
9
 
 
10
 
CPPUNIT_NS_BEGIN
11
 
 
12
 
 
13
 
TestPlugInDefaultImpl::TestPlugInDefaultImpl() 
14
 
{
15
 
}
16
 
 
17
 
 
18
 
TestPlugInDefaultImpl::~TestPlugInDefaultImpl()
19
 
{
20
 
}
21
 
 
22
 
 
23
 
void 
24
 
TestPlugInDefaultImpl::initialize( TestFactoryRegistry *registry,
25
 
                                   const PlugInParameters &parameters )
26
 
{
27
 
}
28
 
 
29
 
 
30
 
void 
31
 
TestPlugInDefaultImpl::addListener( TestResult *eventManager )
32
 
{
33
 
}
34
 
 
35
 
 
36
 
void 
37
 
TestPlugInDefaultImpl::removeListener( TestResult *eventManager )
38
 
{
39
 
}
40
 
 
41
 
 
42
 
void 
43
 
TestPlugInDefaultImpl::addXmlOutputterHooks( XmlOutputter *outputter )
44
 
{
45
 
}
46
 
 
47
 
 
48
 
void 
49
 
TestPlugInDefaultImpl::removeXmlOutputterHooks()
50
 
{
51
 
}
52
 
 
53
 
 
54
 
void 
55
 
TestPlugInDefaultImpl::uninitialize( TestFactoryRegistry *registry )
56
 
{
57
 
}
58
 
 
59
 
 
60
 
CPPUNIT_NS_END
61
 
 
62
 
 
63
 
#endif // !defined(CPPUNIT_NO_TESTPLUGIN)