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

namespace CppUnit {

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


void 
TestSetUp::setUp()
{
}


void 
TestSetUp::tearDown() 
{
}


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


} //  namespace CppUnit