1#include <cppunit/extensions/TestSetUp.h>
2
3namespace CppUnit {
4
5TestSetUp::TestSetUp( Test *test ) : TestDecorator( test )
6{
7}
8
9
10void
11TestSetUp::setUp()
12{
13}
14
15
16void
17TestSetUp::tearDown()
18{
19}
20
21
22void
23TestSetUp::run( TestResult *result )
24{
25  setUp();
26  TestDecorator::run(result);
27  tearDown();
28}
29
30
31} //  namespace CppUnit
32