summaryrefslogtreecommitdiff
path: root/src/cppunit/XmlOutputterHook.cpp
blob: 53d10f6eaa6c4c2d71ed311bb5fb5088a13c736b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <cppunit/XmlOutputterHook.h>


CPPUNIT_NS_BEGIN


void 
XmlOutputterHook::beginDocument( XmlDocument * )
{
}


void 
XmlOutputterHook::endDocument( XmlDocument * )
{
}


void 
XmlOutputterHook::failTestAdded( XmlDocument *,
                                 XmlElement *,
                                 Test *,
                                 TestFailure * )
{
}


void 
XmlOutputterHook::successfulTestAdded( XmlDocument *,
                                       XmlElement *,
                                       Test * )
{
}


void 
XmlOutputterHook::statisticsAdded( XmlDocument *,
                                   XmlElement * )
{
}


CPPUNIT_NS_END