summaryrefslogtreecommitdiff
path: root/include/cppunit/extensions
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2001-06-10 16:08:33 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2001-06-10 16:08:33 +0000
commitb3576400de89f915a43c190940cdf5f9315d6ec8 (patch)
tree8d8f830a30edc65bb58aecb126a5eb301b48e277 /include/cppunit/extensions
parent4d03b7513fed3862f9992fe88fa0021dcf1d6f92 (diff)
downloadcppunit-b3576400de89f915a43c190940cdf5f9315d6ec8.tar.gz
Include/extensions/TestSetup.h: renamed TestSetUp.h for consistency.
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
-