diff options
| author | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-06-11 10:12:13 +0000 |
|---|---|---|
| committer | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-06-11 10:12:13 +0000 |
| commit | be9c2ced0eda31e0485f92ee8768b1c00bedf41d (patch) | |
| tree | 8d8f830a30edc65bb58aecb126a5eb301b48e277 /include/cppunit/extensions/TestSetUp.h | |
| parent | 7049d3f3883ec2caec4b28291ccc312997d202fd (diff) | |
| download | cppunit-be9c2ced0eda31e0485f92ee8768b1c00bedf41d.tar.gz | |
Renamed to TestSetUp.h
Diffstat (limited to 'include/cppunit/extensions/TestSetUp.h')
| -rw-r--r-- | include/cppunit/extensions/TestSetUp.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/include/cppunit/extensions/TestSetUp.h b/include/cppunit/extensions/TestSetUp.h deleted file mode 100644 index 8b2ffa2..0000000 --- a/include/cppunit/extensions/TestSetUp.h +++ /dev/null @@ -1,35 +0,0 @@ -#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 - |
