[Cppunit-cvs] cppunit2 TODO, 1.4, 1.5 changelog.txt, 1.1, 1.2 sconstruct, 1.32, 1.33
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2007-08-15 11:21:02
|
Update of /cvsroot/cppunit/cppunit2 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv8069 Modified Files: TODO changelog.txt sconstruct Log Message: Added support for light test fixture (a la CppUnitLite). See lightfixture.h and example/light_fixture. Added support for direct declaration and registration of test in plain C function. See testfunction.h and example/test_function. Index: sconstruct =================================================================== RCS file: /cvsroot/cppunit/cppunit2/sconstruct,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** sconstruct 14 Aug 2007 17:30:52 -0000 1.32 --- sconstruct 15 Aug 2007 11:20:57 -0000 1.33 *************** *** 170,173 **** --- 170,175 ---- buildProjectInDirectory( 'examples/log_demo' ) buildProjectInDirectory( 'examples/stringize_demo' ) + buildProjectInDirectory( 'examples/light_fixture' ) + buildProjectInDirectory( 'examples/test_function' ) ##buildProjectInDirectory( 'examples/opentest_demo' ) #buildProjectInDirectory( 'src/qttestdriver' ) Index: changelog.txt =================================================================== RCS file: /cvsroot/cppunit/cppunit2/changelog.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** changelog.txt 14 Aug 2007 17:30:52 -0000 1.1 --- changelog.txt 15 Aug 2007 11:20:57 -0000 1.2 *************** *** 1,7 **** * 2007/08/14 blep Modified assertion implementation to force evaluation of user condition expression first, while preserving delegation to function, overloading and optional parameters feature. ! See CPPUT_BEGIN_ASSERTION_MACRO() documentation in testinfo.h for an example ! to update your custom assertion code. --- 1,13 ---- + * 2007/08/15 blep + Added support for light test fixture (a la CppUnitLite). + See lightfixture.h and example/light_fixture. + Added support for direct declaration and registration of test in plain C + function. See testfunction.h and example/test_function. + * 2007/08/14 blep Modified assertion implementation to force evaluation of user condition expression first, while preserving delegation to function, overloading and optional parameters feature. ! See CPPUT_BEGIN_ASSERTION_MACRO() documentation in testinfo.h for an ! example to update your custom assertion code. Index: TODO =================================================================== RCS file: /cvsroot/cppunit/cppunit2/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TODO 14 Aug 2007 17:30:52 -0000 1.4 --- TODO 15 Aug 2007 11:20:57 -0000 1.5 *************** *** 1 **** --- 1,2 ---- * complete works on the CommandLines library => likely moved to opentest. + * add support for ExtendedData in C function test case (CPPUT_TEST_FUNCTION...) |