diff options
Diffstat (limited to 'include/cppunit/TestLeaf.h')
-rw-r--r-- | include/cppunit/TestLeaf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/TestLeaf.h b/include/cppunit/TestLeaf.h index c83b075..d41bca7 100644 --- a/include/cppunit/TestLeaf.h +++ b/include/cppunit/TestLeaf.h @@ -23,7 +23,7 @@ public: * \return 1. * \see Test::countTestCases(). */ - int countTestCases() const; + int countTestCases() const override; /*! Returns the number of child of this test case: 0. * @@ -31,12 +31,12 @@ public: * * \return 0. */ - int getChildTestCount() const; + int getChildTestCount() const override; /*! Always throws std::out_of_range. * \see Test::doGetChildTestAt(). */ - Test *doGetChildTestAt( int index ) const; + Test *doGetChildTestAt( int index ) const override; }; CPPUNIT_NS_END |