[Cppunit-cvs] cppunit/doc cookbook.dox,1.8,1.9
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2007-02-25 09:21:49
|
Update of /cvsroot/cppunit/cppunit/doc In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv13323/doc Modified Files: cookbook.dox Log Message: * doc/cookbook.dox: changed suite() to return a TestSuite instead of a Test to avoid introducing unnecessary complexity. Index: cookbook.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/cookbook.dox,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** cookbook.dox 27 Nov 2005 18:32:31 -0000 1.8 --- cookbook.dox 25 Feb 2007 09:21:45 -0000 1.9 *************** *** 275,279 **** \code public: ! static CppUnit::Test *suite() { CppUnit::TestSuite *suiteOfTests = new CppUnit::TestSuite( "ComplexNumberTest" ); --- 275,279 ---- \code public: ! static CppUnit::TestSuite *suite() { CppUnit::TestSuite *suiteOfTests = new CppUnit::TestSuite( "ComplexNumberTest" ); |