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

« back to all changes in this revision

Viewing changes to third-party/cppunit/cppunit/src/cppunit/TestSetUp.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/extensions/TestSetUp.h>
2
 
 
3
 
CPPUNIT_NS_BEGIN
4
 
 
5
 
 
6
 
TestSetUp::TestSetUp( Test *test ) : TestDecorator( test ) 
7
 
{
8
 
}
9
 
 
10
 
 
11
 
void 
12
 
TestSetUp::setUp()
13
 
{
14
 
}
15
 
 
16
 
 
17
 
void 
18
 
TestSetUp::tearDown() 
19
 
{
20
 
}
21
 
 
22
 
 
23
 
void
24
 
TestSetUp::run( TestResult *result )
25
 
26
 
  setUp();
27
 
  TestDecorator::run(result);
28
 
  tearDown();
29
 
}
30
 
 
31
 
 
32
 
CPPUNIT_NS_END