summaryrefslogtreecommitdiff
path: root/include/cppunit/TestCase.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/TestCase.h')
-rw-r--r--include/cppunit/TestCase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cppunit/TestCase.h b/include/cppunit/TestCase.h
index ebbd135..e27ba31 100644
--- a/include/cppunit/TestCase.h
+++ b/include/cppunit/TestCase.h
@@ -41,12 +41,12 @@ namespace CppUnit {
*
* For each test implement a method which interacts
* with the fixture. Verify the expected results with assertions specified
- * by calling assert on the expression you want to test:
+ * by calling CPPUNIT_ASSERT on the expression you want to test:
*
* \code
* protected: void testAdd () {
* int result = value1 + value2;
- * assert (result == 5);
+ * CPPUNIT_ASSERT (result == 5);
* }
* \endcode
*