[Cppunit-cvs] cppunit2/include/cpput assertcommon.h,1.1,1.2 testinfo.h,1.19,1.20
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-11-13 23:02:30
|
Update of /cvsroot/cppunit/cppunit2/include/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7919/include/cpput Modified Files: assertcommon.h testinfo.h Log Message: - added fake_stl so that doxygen can figure out that runtime_error is in std namespace - improved documentation Index: testinfo.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpput/testinfo.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** testinfo.h 12 Nov 2005 20:55:46 -0000 1.19 --- testinfo.h 13 Nov 2005 23:02:16 -0000 1.20 *************** *** 19,22 **** --- 19,26 ---- { } + + virtual ~AbortingAssertionException() throw() + { + } }; *************** *** 30,33 **** --- 34,41 ---- { } + + virtual ~SkipTestException() throw() + { + } }; Index: assertcommon.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpput/assertcommon.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** assertcommon.h 13 Nov 2005 10:12:01 -0000 1.1 --- assertcommon.h 13 Nov 2005 23:02:16 -0000 1.2 *************** *** 450,457 **** * * \code ! * CPPUT_IGNORE_FAILURE(( CPPUT_ASSERT_EQUAL( 1, 2 )); * \endcode * ! * \warning Be sure to always use double brace around the macro parameter to avoid * preprocessor mess. */ --- 450,457 ---- * * \code ! * CPPUT_IGNORE_FAILURE(( CPPUT_ASSERT_EQUAL( 1, 2 ) )); * \endcode * ! * \warning Be sure to always use <b>double braces</b> around the macro parameter to avoid * preprocessor mess. */ |