summaryrefslogtreecommitdiff
path: root/src/cppunit/TestSetUp.cpp
blob: d4d853089395e6cb7a84dedf4826c683a2845956 (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
#include <cppunit/extensions/TestSetUp.h>

CPPUNIT_NS_BEGIN


TestSetUp::TestSetUp( Test *test ) : TestDecorator( test ) 
{
}


void 
TestSetUp::setUp()
{
}


void 
TestSetUp::tearDown() 
{
}


void
TestSetUp::run( TestResult *result )
{ 
  setUp();
  TestDecorator::run(result);
  tearDown();
}


CPPUNIT_NS_END