diff options
| author | Steve M. Robbins <smr@sumost.ca> | 2001-07-15 17:42:32 +0000 |
|---|---|---|
| committer | Steve M. Robbins <smr@sumost.ca> | 2001-07-15 17:42:32 +0000 |
| commit | c866084c8b86aa76c3565958fad8553c43bc3306 (patch) | |
| tree | 997582228a56fecc5db33ec6fed3e967d0aecf1b /include/cppunit/TestCase.h | |
| parent | 08b4a5c444044db09dc5c668390e9f40663210ff (diff) | |
| download | cppunit-c866084c8b86aa76c3565958fad8553c43bc3306.tar.gz | |
TextFixture introduced. First steps at using it.
Diffstat (limited to 'include/cppunit/TestCase.h')
| -rw-r--r-- | include/cppunit/TestCase.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/cppunit/TestCase.h b/include/cppunit/TestCase.h index 30124d8..4073665 100644 --- a/include/cppunit/TestCase.h +++ b/include/cppunit/TestCase.h @@ -4,6 +4,8 @@ #include <string> #include <cppunit/Test.h> #include <cppunit/TestAssert.h> +#include <cppunit/TestFixture.h> + namespace CppUnit { @@ -88,7 +90,7 @@ class TestResult; * */ -class TestCase : public Test +class TestCase : public Test, public TestFixture { public: @@ -106,9 +108,6 @@ public: virtual TestResult *run (); - virtual void setUp (); - virtual void tearDown (); - protected: //! FIXME: this should probably be pure virtual. virtual void runTest (); |
