[Cppunit-cvs] cppunit/include/cppunit CompilerOutputter.h,1.15,1.16 TestSuite.h,1.14,1.15 XmlOutputt
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-07-09 07:42:56
|
Update of /cvsroot/cppunit/cppunit/include/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32107/include/cppunit Modified Files: CompilerOutputter.h TestSuite.h XmlOutputterHook.h Log Message: * doc/Money.dox: * include/cppunit/TestSuite.h: * include/cppunit/XmlOutputterHook.h: applied Brad Hards patch that correct miscellaneous doc generation issues (unescaped <>, \...). * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. Index: CompilerOutputter.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/CompilerOutputter.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** CompilerOutputter.h 25 Jun 2004 11:11:45 -0000 1.15 --- CompilerOutputter.h 9 Jul 2005 07:42:47 -0000 1.16 *************** *** 91,95 **** * VC++ is not detected). If you want your compiler to be automatically supported by * CppUnit, send a mail to the mailing list (preferred), or submit a feature request ! * that indicates how to detect your compiler with the preprocessor (#ifdef...) and * your compiler location format. */ --- 91,95 ---- * VC++ is not detected). If you want your compiler to be automatically supported by * CppUnit, send a mail to the mailing list (preferred), or submit a feature request ! * that indicates how to detect your compiler with the preprocessor (\#ifdef...) and * your compiler location format. */ Index: TestSuite.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/TestSuite.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TestSuite.h 13 Jul 2002 10:33:50 -0000 1.14 --- TestSuite.h 9 Jul 2005 07:42:47 -0000 1.15 *************** *** 31,35 **** * "testDivideByZero", testDivideByZero)); * \endcode ! * Note that \link TestSuite TestSuites assume lifetime * control for any tests added to them. * --- 31,35 ---- * "testDivideByZero", testDivideByZero)); * \endcode ! * Note that \link TestSuite TestSuites \endlink assume lifetime * control for any tests added to them. * Index: XmlOutputterHook.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/XmlOutputterHook.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** XmlOutputterHook.h 3 Aug 2002 16:00:46 -0000 1.4 --- XmlOutputterHook.h 9 Jul 2005 07:42:47 -0000 1.5 *************** *** 130,134 **** /*! Called after adding a fail test element. * \param document XML Document being created. ! * \param testElement <FailedTest> element. * \param test Test that failed. * \param failure Test failure data. --- 130,134 ---- /*! Called after adding a fail test element. * \param document XML Document being created. ! * \param testElement \<FailedTest\> element. * \param test Test that failed. * \param failure Test failure data. *************** *** 141,145 **** /*! Called after adding a successful test element. * \param document XML Document being created. ! * \param testElement <Test> element. * \param test Test that was successful. */ --- 141,145 ---- /*! Called after adding a successful test element. * \param document XML Document being created. ! * \param testElement \<Test\> element. * \param test Test that was successful. */ *************** *** 150,154 **** /*! Called after adding the statistic element. * \param document XML Document being created. ! * \param statisticsElement <Statistics> element. */ virtual void statisticsAdded( XmlDocument *document, --- 150,154 ---- /*! Called after adding the statistic element. * \param document XML Document being created. ! * \param statisticsElement \<Statistics\> element. */ virtual void statisticsAdded( XmlDocument *document, |