diff options
Diffstat (limited to 'src/cppunit/TestCase.cpp')
| -rw-r--r-- | src/cppunit/TestCase.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cppunit/TestCase.cpp b/src/cppunit/TestCase.cpp index fc9269d..9499416 100644 --- a/src/cppunit/TestCase.cpp +++ b/src/cppunit/TestCase.cpp @@ -104,6 +104,16 @@ std::string } +/// A hook for fixture set up +void TestCase::setUp () +{} + + +/// A hook for fixture tear down +void TestCase::tearDown () +{} + + /// Returns the name of the test case instance std::string TestCase::toString () const |
