summaryrefslogtreecommitdiff
path: root/include/cppunit/extensions/HelperMacros.h
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2001-05-23 17:34:54 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2001-05-23 17:34:54 +0000
commit1c884ac7e6a0efc265f7f244f66345f4f65d626f (patch)
tree01298f8012dfb30bcb8f78695ae0c60db0c205a3 /include/cppunit/extensions/HelperMacros.h
parent054d581bfeedc987887483de61f9922092c1b4b9 (diff)
downloadcppunit-1c884ac7e6a0efc265f7f244f66345f4f65d626f.tar.gz
* Updated CU_TEST_SUITE macro documentation. It is now stated explicitly
that you do not need to specify template parameter as macro argument. The documentation example has been updated to reflect that.
Diffstat (limited to 'include/cppunit/extensions/HelperMacros.h')
-rw-r--r--include/cppunit/extensions/HelperMacros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cppunit/extensions/HelperMacros.h b/include/cppunit/extensions/HelperMacros.h
index cb6869d..5aeece9 100644
--- a/include/cppunit/extensions/HelperMacros.h
+++ b/include/cppunit/extensions/HelperMacros.h
@@ -64,12 +64,12 @@
* \encode
*
* The great thing about that is that you can even used it on template test case.
- * You only need to specify the full qualified name of the class. For example:
+ * You don't even need to specify the template parameters! For example:
*
* \code
* template<typename CharType>
* class StringTest : public CppUnit::Testcase {
- * CU_TEST_SUITE( StringTest<CharType> );
+ * CU_TEST_SUITE( StringTest );
* CU_TEST( testAppend );
* CU_TEST_SUITE_END();
* public: