diff options
Diffstat (limited to 'include/cppunit/extensions/TestSetUp.h')
| -rw-r--r-- | include/cppunit/extensions/TestSetUp.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/cppunit/extensions/TestSetUp.h b/include/cppunit/extensions/TestSetUp.h new file mode 100644 index 0000000..8b2ffa2 --- /dev/null +++ b/include/cppunit/extensions/TestSetUp.h @@ -0,0 +1,35 @@ +#ifndef CPPUNIT_EXTENSIONS_TESTSETUP_H +#define CPPUNIT_EXTENSIONS_TESTSETUP_H + +#include <cppunit/extensions/TestDecorator.h> + +namespace CppUnit { + +class Test; +class TestResult; + + +class TestSetup : public TestDecorator +{ +public: + TestSetup (Test *test) : TestDecorator (test) {} + run (TestResult *result); + +protected: + void setUp () {} + void tearDown () {} + +private: + TestSetup( const TestSetup & ); + void operator =( const TestSetup & ); +}; + + +inline TestSetup::run (TestResult *result) +{ setUp (); TestDecorator::run (result); tearDown (); } + + +} // namespace CppUnit + +#endif // CPPUNIT_EXTENSIONS_TESTSETUP_H + |
