~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to third-party/cppunit/cppunit/src/cppunit/XmlOutputterHook.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/XmlOutputterHook.h>
2
 
 
3
 
 
4
 
CPPUNIT_NS_BEGIN
5
 
 
6
 
 
7
 
void 
8
 
XmlOutputterHook::beginDocument( XmlDocument *document )
9
 
{
10
 
}
11
 
 
12
 
 
13
 
void 
14
 
XmlOutputterHook::endDocument( XmlDocument *document )
15
 
{
16
 
}
17
 
 
18
 
 
19
 
void 
20
 
XmlOutputterHook::failTestAdded( XmlDocument *document,
21
 
                                 XmlElement *testElement,
22
 
                                 Test *test,
23
 
                                 TestFailure *failure )
24
 
{
25
 
}
26
 
 
27
 
 
28
 
void 
29
 
XmlOutputterHook::successfulTestAdded( XmlDocument *document,
30
 
                                       XmlElement *testElement,
31
 
                                       Test *test )
32
 
{
33
 
}
34
 
 
35
 
 
36
 
void 
37
 
XmlOutputterHook::statisticsAdded( XmlDocument *document,
38
 
                                   XmlElement *statisticsElement )
39
 
{
40
 
}
41
 
 
42
 
 
43
 
CPPUNIT_NS_END
44