~ubuntu-branches/ubuntu/quantal/psi/quantal

« 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: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

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)