summaryrefslogtreecommitdiff
path: root/include/cppunit/TestCase.h
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-06-02 21:29:52 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-06-02 21:29:52 +0000
commitcdbca4119defbc5f9698906633eec05b5dc8272a (patch)
tree6f0fc91b8cb7cc7b361966ffc8ab2e401e1e4c6e /include/cppunit/TestCase.h
parent99f54c0f4b53debc49f2081ce01158b2ed200c30 (diff)
downloadcppunit-cdbca4119defbc5f9698906633eec05b5dc8272a.tar.gz
Change to templatized TestAssert::assertEquals() and the new CPPUNIT_ASSERT* macros
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
*