Update of /cvsroot/cppunit/cppunit/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29992
Modified Files:
cookbook.dox
Log Message:
* fixed 'return wasSuccessful' instead of '!wasSuccessful.'
Index: cookbook.dox
===================================================================
RCS file: /cvsroot/cppunit/cppunit/doc/cookbook.dox,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** cookbook.dox 14 Jun 2005 21:15:15 -0000 1.6
--- cookbook.dox 5 Jul 2005 20:10:19 -0000 1.7
***************
*** 505,509 ****
runner.addTest( registry.makeTest() );
bool wasSuccessful = runner.run( "", false );
! return wasSuccessful;
}
\endcode
--- 505,509 ----
runner.addTest( registry.makeTest() );
bool wasSuccessful = runner.run( "", false );
! return !wasSuccessful;
}
\endcode
|