diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-07-11 05:01:54 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-07-11 05:01:54 +0000 |
| commit | 6943d47a76445bbfebc99859ed38698760354642 (patch) | |
| tree | ffe6390ed4d606edb9539e255232cbe95c79d2ce /include/cppunit/Test.h | |
| parent | 85aa074c02154107459755b2a3ddbc0b5767558a (diff) | |
| download | cppunit-6943d47a76445bbfebc99859ed38698760354642.tar.gz | |
added missing files
Diffstat (limited to 'include/cppunit/Test.h')
| -rw-r--r-- | include/cppunit/Test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/Test.h b/include/cppunit/Test.h index e457ca1..8e6dba3 100644 --- a/include/cppunit/Test.h +++ b/include/cppunit/Test.h @@ -69,7 +69,7 @@ public: * \return \c true if a test with the specified name is found, \c false otherwise. */ virtual bool findTestPath( const std::string &testName, - TestPath &testPath ); + TestPath &testPath ) const; /*! \brief Finds the specified test and its parents test. * \param test Test to find. @@ -78,7 +78,7 @@ public: * \return \c true if the specified test is found, \c false otherwise. */ virtual bool findTestPath( const Test *test, - TestPath &testPath ); + TestPath &testPath ) const; /*! \brief Finds the test with the specified name in the hierarchy. * \param testName Name of the test to find. @@ -93,7 +93,7 @@ public: * \exception std::invalid_argument if \a testPath could not be resolved. * \see TestPath. */ - virtual TestPath resolveTestPath( const std::string &testPath ); + virtual TestPath resolveTestPath( const std::string &testPath ) const; protected: /*! Throws an exception if the specified index is invalid. |
