summaryrefslogtreecommitdiff
path: root/include/cppunit/TestPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/TestPath.h')
-rw-r--r--include/cppunit/TestPath.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/cppunit/TestPath.h b/include/cppunit/TestPath.h
index 8934479..4eb6a26 100644
--- a/include/cppunit/TestPath.h
+++ b/include/cppunit/TestPath.h
@@ -83,7 +83,7 @@ public:
virtual bool isValid() const;
/*! \brief Adds a test to the path.
- * \param test Pointer on the test to add. Must not be \c NULL.
+ * \param test Pointer on the test to add. Must not be \c nullptr.
*/
virtual void add( Test *test );
@@ -93,7 +93,7 @@ public:
virtual void add( const TestPath &path );
/*! \brief Inserts a test at the specified index.
- * \param test Pointer on the test to insert. Must not be \c NULL.
+ * \param test Pointer on the test to insert. Must not be \c nullptr.
* \param index Zero based index indicating where the test is inserted.
* \exception std::out_of_range is \a index < 0 or \a index > getTestCount().
*/
@@ -132,13 +132,13 @@ public:
/*! \brief Returns the test of the specified index.
* \param index Zero based index of the test to return.
- * \return Pointer on the test at index \a index. Never \c NULL.
+ * \return Pointer on the test at index \a index. Never \c nullptr.
* \exception std::out_of_range is \a index < 0 or \a index >= getTestCount().
*/
virtual Test *getTestAt( int index ) const;
/*! \brief Get the last test of the path.
- * \return Pointer on the last test (test at the bottom of the hierarchy). Never \c NULL.
+ * \return Pointer on the last test (test at the bottom of the hierarchy). Never \c nullptr.
* \exception std::out_of_range if the path is not valid ( isValid() returns \c false ).
*/
virtual Test *getChildTest() const;
@@ -185,7 +185,7 @@ protected:
* the root test if the path string is relative.
* \param pathAsString Path string. May be absolute or relative.
* \param testNames Test name components are added to that container.
- * \return Pointer on the resolved root test. Never \c NULL.
+ * \return Pointer on the resolved root test. Never \c nullptr.
* \exception std::invalid_argument if either the root name can not be resolved or if
* pathAsString contains no name components.
*/