summaryrefslogtreecommitdiff
path: root/include/cppunit/extensions
diff options
context:
space:
mode:
authorBastiaan Bakker <bastiaan.bakker@lifeline.nl>2001-06-11 10:12:13 +0000
committerBastiaan Bakker <bastiaan.bakker@lifeline.nl>2001-06-11 10:12:13 +0000
commitbe9c2ced0eda31e0485f92ee8768b1c00bedf41d (patch)
tree8d8f830a30edc65bb58aecb126a5eb301b48e277 /include/cppunit/extensions
parent7049d3f3883ec2caec4b28291ccc312997d202fd (diff)
downloadcppunit-be9c2ced0eda31e0485f92ee8768b1c00bedf41d.tar.gz
Renamed to TestSetUp.h
Diffstat (limited to 'include/cppunit/extensions')
-rw-r--r--include/cppunit/extensions/TestSetUp.h35
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
-