[Mockpp-commits] mockpp ChangeLog,1.29,1.30
Brought to you by:
ewald-arnold
|
From: Ewald A. <ewa...@us...> - 2005-02-27 11:58:18
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27136 Modified Files: ChangeLog Log Message: update Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ChangeLog 27 Feb 2005 11:48:13 -0000 1.29 --- ChangeLog 27 Feb 2005 11:58:02 -0000 1.30 *************** *** 4,41 **** -------------- ! 2003-03-08 1.1.3: Final release ! ! 2003-03-09 1.1.4: Fixed installation issue ! ! 2003-03-10 1.1.5: Closed memory leak ! ! 2003-03-12 1.1.6: - ExpectationBoundary.setExpectedDelta() added ! - pass parameters by reference to Visitabable methods ! ! 2003-03-10 1.1.7: Extended documentation via doxygen ! ! 2003-04-06 1.1.8: - Port to OpenBsd 3.1 and g++ 2.95 ! - fix for MSVC ! - simplified MockObject verify() ! - removed useless multithread stuff ! ! 2003-04-06 1.1.9: fixed references to removed Mutex.h ! ! 2003-04-28 1.1.10: - port to msvc 6+7, HP-UX 11 ! 2003-10-11 1.1.11: - moved bcb5/msvc config files to sources ! - patch for msvc unicode problem ! 2003-12-11 1.1.13: - bug fixes: - string formatting ! - ReturnObjectList message ! 2004-02-15 1.1.14: - better detection of cppunit files ! 2004-07-26 1.1.15: - extended macros for better handling of mock method ! parameter types - 2004-08-03 1.1.16: - fixes and workarounds for MS VC - - patches for g++ 3.4 2004-12-11 1.2.0-b1: - new expectation type ExpectationConglomeration - added chaining invocation for certain classes --- 4,34 ---- -------------- ! 2005-02-26 1.5.0: - added class ConstraintList ! - VisitableMockObjects optionally take Constraints as reference objects ! instead of actual values. ! 2005-02-25 1.4.0: - changed "verify() const" to "verify()" ! - mock objects reset all their sub objects ! - all mock objects get their own reset() method ! - ReturnObjectList has a default return value ! 2005-02-19 1.3.0: - new TrackingCounter classes ! 2005-01-26 1.2.0: - closed 2 memory leaks ! - fixed VerifyingTestCase ! - added another example file ! - changes in macros: ! changing MOCKPP_STRING to MOCKPP_PCSTRING may become necessary ! - prepared CBuilderX project files ! 2005-01-08 1.2.0-b4: - modified and fixed setExpected()/setExpectNothing() + 2005-01-07 1.2.0-b3: - compatibility break: addThrowable()/addReturnValue place exceptions + "in line" with return values, exceptions are no more thrown at the beginning. + To switch back to old behaviour call unsetThrowablesInline() + before calling activate(). See documentation for details. + - check for cppunit/Message.h + - manually disable verify() in VerifyingTextCase 2004-12-11 1.2.0-b1: - new expectation type ExpectationConglomeration - added chaining invocation for certain classes *************** *** 49,74 **** (mainly substituted METHOD with VISITABLE) ! 2005-01-07 1.2.0-b3: - compatibility break: addThrowable()/addReturnValue place exceptions ! "in line" with return values, exceptions are no more thrown at the beginning. ! To switch back to old behaviour call unsetThrowablesInline() ! before calling activate(). See documentation for details. ! - check for cppunit/Message.h ! - manually disable verify() in VerifyingTextCase ! 2005-01-08 1.2.0-b4: - modified and fixed setExpected()/setExpectNothing() ! 2005-01-26 1.2.0: - closed 2 memory leaks ! - fixed VerifyingTestCase ! - added another example file ! - changes in macros: ! changing MOCKPP_STRING to MOCKPP_PCSTRING may become necessary ! - prepared CBuilderX project files ! 2005-02-19 1.3.0: - new TrackingCounter classes ! 2005-02-25 1.4.0: - changed "verify() const" to "verify()" ! - mock objects reset all their sub objects ! - all mock objects get their own reset() method ! - ReturnObjectList has a default return value - 2005-02-26 1.5.0: - added class ConstraintList --- 42,77 ---- (mainly substituted METHOD with VISITABLE) ! 2004-08-03 1.1.16: - fixes and workarounds for MS VC ! - patches for g++ 3.4 ! 2004-07-26 1.1.15: - extended macros for better handling of mock method ! parameter types ! 2004-02-15 1.1.14: - better detection of cppunit files ! 2003-12-11 1.1.13: - bug fixes: - string formatting ! - ReturnObjectList message ! 2003-10-11 1.1.11: - moved bcb5/msvc config files to sources ! - patch for msvc unicode problem ! ! 2003-04-28 1.1.10: - port to msvc 6+7, HP-UX 11 ! ! 2003-04-06 1.1.9: fixed references to removed Mutex.h ! ! 2003-04-06 1.1.8: - Port to OpenBsd 3.1 and g++ 2.95 ! - fix for MSVC ! - simplified MockObject verify() ! - removed useless multithread stuff ! ! 2003-03-10 1.1.7: Extended documentation via doxygen ! ! 2003-03-12 1.1.6: - ExpectationBoundary.setExpectedDelta() added ! - pass parameters by reference to Visitabable methods ! ! 2003-03-10 1.1.5: Closed memory leak ! ! 2003-03-09 1.1.4: Fixed installation issue ! ! 2003-03-08 1.1.3: Final release |