diff options
Diffstat (limited to 'src/cppunit/TestSetUp.cpp')
| -rw-r--r-- | src/cppunit/TestSetUp.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/cppunit/TestSetUp.cpp b/src/cppunit/TestSetUp.cpp new file mode 100644 index 0000000..a55339c --- /dev/null +++ b/src/cppunit/TestSetUp.cpp @@ -0,0 +1,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 |
