[Mockpp-commits] mockpp/mockpp ChainableMockObject.h,1.30,1.31
Brought to you by:
ewald-arnold
|
From: Ewald A. <ewa...@us...> - 2005-12-01 16:15:36
|
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27882/mockpp Modified Files: ChainableMockObject.h Log Message: fixes for ministl Index: ChainableMockObject.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ChainableMockObject.h,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- ChainableMockObject.h 26 Nov 2005 18:00:16 -0000 1.30 +++ ChainableMockObject.h 1 Dec 2005 16:15:24 -0000 1.31 @@ -32,6 +32,8 @@ #include <mockpp/mockpp.h> // always first +#include MOCKPP_MULTIMAP_H + #include <mockpp/MockObject.h> #include <mockpp/chaining/ChainableMockObject_macro.h> @@ -49,14 +51,15 @@ namespace mockpp { -/** Base for a generic object that can be used to replace a real world object for testing purposes. +/** Base for a generic object that can be used to replace a real world object + * for testing purposes. * It emulates the real world behaviour by feeding it "chained expectations". * \ingroup grp_advanced_mo */ class ChainableMockObjectBase : public BuilderNamespace { typedef MOCKPP_STL::map<String, MatchBuilderAdapterBase*> TableType; - typedef std::multimap<String, InvokedRecorder*> PendingType; + typedef MOCKPP_STL::multimap<String, InvokedRecorder*> PendingType; public: |