mockpp-commits Mailing List for Mock Objects for C++ (Page 47)
Brought to you by:
ewald-arnold
You can subscribe to this list here.
2005 |
Jan
|
Feb
(17) |
Mar
(178) |
Apr
(119) |
May
(60) |
Jun
(3) |
Jul
(60) |
Aug
(16) |
Sep
(55) |
Oct
(156) |
Nov
(136) |
Dec
(255) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(98) |
Feb
(8) |
Mar
(57) |
Apr
(43) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ewald A. <ewa...@us...> - 2005-03-22 18:43:46
|
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14244/mockpp Modified Files: ReturnObjectList.h Log Message: add counter value Index: ReturnObjectList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ReturnObjectList.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ReturnObjectList.h 27 Feb 2005 11:48:14 -0000 1.23 +++ ReturnObjectList.h 22 Mar 2005 18:43:34 -0000 1.24 @@ -91,6 +91,17 @@ } + /** Adds a series of equal next objects to the end of the list. + * @param anObjectToReturn object to be added to the list + * @param count the count the object is added + */ + void addObjectToReturn(const T &anObjectToReturn, unsigned count) + { + for (unsigned i = 0; i < count; ++i) + addObjectToReturn(anObjectToReturn); + } + + /** Add a sequence of next objects to the end of the list. * @param items start iterator * @param end terminating iterator (note: one element "behind" as always with STL) |
From: Ewald A. <ewa...@us...> - 2005-03-20 15:12:24
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23016 Modified Files: Makefile.cvs Log Message: update Index: Makefile.cvs =================================================================== RCS file: /cvsroot/mockpp/mockpp/Makefile.cvs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.cvs 9 Jan 2005 15:09:42 -0000 1.2 +++ Makefile.cvs 20 Mar 2005 15:12:16 -0000 1.3 @@ -1,18 +1,18 @@ -all: +all: @echo "This Makefile is only for the CVS repository" @echo "This will be deleted before making the distribution" @echo "" - @echo "*** Deleting autom4te.cache" + @echo "*** Deleting autom4te.cache" @rm -rf autom4te.cache @echo "*** Creating aclocal.m4" @aclocal @echo "*** Creating configure" @autoconf - echo "*** Creating config.h template" - autoheader + @echo "*** Creating config.h template" + @autoheader @echo "*** Creating Makefile templates" @automake - @echo "*** ^Creating date/time stamp" + @echo "*** Creating date/time stamp" @touch stamp-h.in @echo "*** Finished" @echo " Don't forget to run ./configure" |
From: Ewald A. <ewa...@us...> - 2005-03-20 15:11:46
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22611 Modified Files: configure.in Log Message: prepare next release Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- configure.in 16 Mar 2005 20:23:38 -0000 1.64 +++ configure.in 20 Mar 2005 15:11:24 -0000 1.65 @@ -17,7 +17,7 @@ # MOCKPP_MAJOR_VERSION=1 MOCKPP_MINOR_VERSION=6 -MOCKPP_PATCH_VERSION=1 +MOCKPP_PATCH_VERSION=2 MOCKPP_MICRO_VERSION=24 MOCKPP_INTERFACE_AGE=0 |
From: Ewald A. <ewa...@us...> - 2005-03-20 15:10:33
|
Update of /cvsroot/mockpp/mockpp/mockpp/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21974/mockpp/examples Modified Files: Makefile.am Log Message: libs in /usr/local/lib Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/Makefile.am,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.am 12 Mar 2005 17:50:54 -0000 1.11 +++ Makefile.am 20 Mar 2005 15:10:22 -0000 1.12 @@ -2,18 +2,13 @@ INCLUDES = $(all_includes) -I$(top_srcdir) $(EA_EXTRA_INC) -LDADD = ../libmockpp.la $(LIBCPPUNIT) $(EA_EXTRA_LIB) -AM_LDFLAGS = $(all_libraries) - noinst_PROGRAMS = mock_greeter all: $(bin_PROGRAMS) mock_greeter_SOURCES = mock_greeter.cpp -compile-test: - g++ $(srcdir)/mock_greeter.cpp -o /tmp/mock_greeter - mock_greeter_LDADD = $(top_builddir)/mockpp/libmockpp.la $(LIBDL) $(LIBCPPUNIT) \ -lstdc++ -mock_greeter_LDFLAGS = -L/opt/intel_cc_80/lib + +mock_greeter_LDFLAGS = -L/opt/intel_cc_80/lib $(all_libraries) |
From: Ewald A. <ewa...@us...> - 2005-03-20 15:09:36
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21470/mockpp/chaining Modified Files: InvocationMocker.h Log Message: MSVC 7.1 patch Index: InvocationMocker.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationMocker.h,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- InvocationMocker.h 12 Mar 2005 17:50:54 -0000 1.25 +++ InvocationMocker.h 20 Mar 2005 15:09:27 -0000 1.26 @@ -82,7 +82,7 @@ public: - typedef std::vector<InvocationMatcher<I>*> List; + typedef typename std::vector<InvocationMatcher<I>*> List; typedef typename List::iterator Iterator; typedef typename List::const_iterator ConstIterator; @@ -200,7 +200,7 @@ * @return The current content of the buffer data */ virtual String describeTo( String &result, - const InvocationMockerBase<R,I>::List &matchers, + const typename InvocationMockerBase<R,I>::List &matchers, Stub<R, I> *stub, const String &name ) const = 0; |
From: Ewald A. <ewa...@us...> - 2005-03-20 15:09:12
|
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21118/mockpp Modified Files: mockpp.h Log Message: suppress MSVC warnings Index: mockpp.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.h,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- mockpp.h 19 Feb 2005 13:10:45 -0000 1.42 +++ mockpp.h 20 Mar 2005 15:09:04 -0000 1.43 @@ -89,6 +89,8 @@ # pragma warning (disable:4251) // this warning occurs when a class member doesn't have a dll-interface. # pragma warning (disable:4180) # pragma warning (disable:4355) +# pragma warning (disable:4512) +# pragma warning (disable:4100) # endif // _MSC_VER #ifdef _MSC_VER |
From: Ewald A. <ewa...@us...> - 2005-03-16 20:23:53
|
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15248/mockpp Modified Files: Makefile.am Log Message: include missing file to dist Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Makefile.am,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- Makefile.am 6 Mar 2005 21:45:51 -0000 1.71 +++ Makefile.am 16 Mar 2005 20:23:38 -0000 1.72 @@ -25,7 +25,7 @@ VisitableMockObject_macro.h VisitableMockObject_template.h ExpectationConglomeration.h \ ExpectationCounter.h mockpp.h Throwable.h ThrowableList.h MockObject.h VisitableMockObject.h \ VerifiableList.h Verifiable.h VerifyingTestCase.h SelfDescribing.h ChainableMockObject.h\ - VerifyingTestCaller.h TrackingCounter.h + VerifyingTestCaller.h TrackingCounter.h MixedMockObject.h EXTRA_DIST = \ mockpp_config-bcb5.h \ |
From: Ewald A. <ewa...@us...> - 2005-03-16 20:23:53
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15248 Modified Files: configure.in Log Message: include missing file to dist Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.63 retrieving revision 1.64 diff -u -d -r1.63 -r1.64 --- configure.in 13 Mar 2005 19:34:10 -0000 1.63 +++ configure.in 16 Mar 2005 20:23:38 -0000 1.64 @@ -17,7 +17,7 @@ # MOCKPP_MAJOR_VERSION=1 MOCKPP_MINOR_VERSION=6 -MOCKPP_PATCH_VERSION=0 +MOCKPP_PATCH_VERSION=1 MOCKPP_MICRO_VERSION=24 MOCKPP_INTERFACE_AGE=0 |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:34:55
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31643 Modified Files: configure.in Log Message: increment version number Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- configure.in 27 Feb 2005 11:48:13 -0000 1.62 +++ configure.in 13 Mar 2005 19:34:10 -0000 1.63 @@ -16,12 +16,12 @@ # if backwards compatibility has been broken, set MOCKPP_BINARY_AGE and MOCKPP_INTERFACE_AGE to 0. # MOCKPP_MAJOR_VERSION=1 -MOCKPP_MINOR_VERSION=5 +MOCKPP_MINOR_VERSION=6 MOCKPP_PATCH_VERSION=0 -MOCKPP_MICRO_VERSION=23 +MOCKPP_MICRO_VERSION=24 MOCKPP_INTERFACE_AGE=0 -MOCKPP_BINARY_AGE=1 +MOCKPP_BINARY_AGE=2 MOCKPP_VERSION=$MOCKPP_MAJOR_VERSION.$MOCKPP_MINOR_VERSION.$MOCKPP_PATCH_VERSION |
Update of /cvsroot/mockpp/mockpp/bcb5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31643/bcb5 Modified Files: basicmock.bpf basicmock.bpr chainmock.bpf chainmock.bpr cppunit.bpf cppunit.bpr gen-mak.bat jmock_test.bpf jmock_test.bpr mock_greeter.bpf mock_greeter.bpr mock_test.bpf mock_test.bpr mockpp.bpg mockpp.bpr poormock-se.bpf poormock-se.bpr poormock.bpf poormock.bpr verifying.bpf verifying.bpr visitmock.bpf visitmock.bpr Log Message: increment version number Index: poormock.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/poormock.bpr,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- poormock.bpr 13 Mar 2005 19:13:08 -0000 1.12 +++ poormock.bpr 13 Mar 2005 19:34:12 -0000 1.13 @@ -3,13 +3,13 @@ <PROJECT> <MACROS> <VERSION value="BCB.05.03"/> - <PROJECT value="c:\tmp\compile\poormock_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\poormock.obj - c:\tmp\compile\mockpp_23\\consumer.obj"/> + <PROJECT value="c:\tmp\compile\poormock_24.exe"/> + <OBJFILES value="c:\tmp\compile\mockpp_24\\poormock.obj + c:\tmp\compile\mockpp_24\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> <RESDEPEN value="$(RESFILES)"/> - <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> + <LIBFILES value="c:\tmp\compile\mockpp_24.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi @@ -26,17 +26,17 @@ <USERDEFINES value="__DLL___"/> <SYSDEFINES value="NO_STRICT;_NO_VCL;_RTLDLL;USEPACKAGES"/> <MAINSOURCE value="poormock.bpf"/> - <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> - <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> + <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> + <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> <WARNINGS value="-w-par"/> </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_24\" -N0"c:\tmp\compile\mockpp_24\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> - <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_23\" -D"" -ap -Tpe -x -Gn -v"/> + <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_24\" -D"" -ap -Tpe -x -Gn -v"/> </OPTIONS> <LINKER> <ALLOBJ value="c0x32.obj $(PACKAGES) $(OBJFILES)"/> @@ -73,58 +73,58 @@ [HistoryLists\hlIncludePath] Count=30 -Item0=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include -Item1=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include -Item2=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include -Item3=\\SONNE\HOMES\Documents\src\mockpp_23\mockpp\mockpp_23\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item4=..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item5=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include -Item6=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include -Item7=..\mockpp_23\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include -Item8=..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item0=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include +Item1=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include +Item2=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include +Item3=\\SONNE\HOMES\Documents\src\mockpp_24\mockpp\mockpp_24\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item4=..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item5=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include +Item6=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include +Item7=..\mockpp_24\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include +Item8=..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item9=..;$(BCB)\include;..\..\..\cppunit-1.8.0\include -Item10=..\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item10=..\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item11=..;$(BCB)\include;X:\src\cppunit-1.8.0\include -Item12=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item13=..;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item14=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item15=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item16=.. ;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item17=.. ;..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include -Item18=..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item19=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat +Item12=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item13=..;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item14=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item15=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item16=.. ;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item17=.. ;..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include +Item18=..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item19=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat Item20=..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat -Item21=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item22=..\mockpp_23\tests;..\mockpp;$(BCB)\include -Item23=..\mockpp_23\tests;..\mockpp;$(BCB)/include -Item24=..\mockpp_23\tests;..\mockpp +Item21=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item22=..\mockpp_24\tests;..\mockpp;$(BCB)\include +Item23=..\mockpp_24\tests;..\mockpp;$(BCB)/include +Item24=..\mockpp_24\tests;..\mockpp Item25=..\mockpp -Item26=..\mockpp_23\tests;..\mockpp_23\mockpp -Item27=..\mockpp_23\mockpp -Item28=..\mockpp_23\tests;..\mockpp_23\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item29=..\mockpp_23\tests;E:\Eigene Dateien\c++\mockpp_23\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item26=..\mockpp_24\tests;..\mockpp_24\mockpp +Item27=..\mockpp_24\mockpp +Item28=..\mockpp_24\tests;..\mockpp_24\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item29=..\mockpp_24\tests;E:\Eigene Dateien\c++\mockpp_24\mockpp;$(BCB)\include;$(BCB)\include\vcl [HistoryLists\hlLibraryPath] Count=19 -Item0=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib +Item0=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib Item1=$(BCB)\lib\obj;$(BCB)\lib -Item2=\\SONNE\HOMES\Documents\src\mockpp_23\mockpp\mockpp_23\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item3=..\mockpp_23\examples;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item4=..\mockpp_23\examples;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item5=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item6=..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item7=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat -Item8=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item9=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item10=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output -Item11=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_23\bcb5\output -Item12=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output -Item13=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib -Item14=..\mockpp_23\apps;D:\CBuilder5\mockpp_23\;$(BCB)\lib\obj;$(BCB)\lib -Item15=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item16=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item2=\\SONNE\HOMES\Documents\src\mockpp_24\mockpp\mockpp_24\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item3=..\mockpp_24\examples;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item4=..\mockpp_24\examples;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item5=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item6=..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item7=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat +Item8=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item9=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item10=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output +Item11=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_24\bcb5\output +Item12=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output +Item13=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib +Item14=..\mockpp_24\apps;D:\CBuilder5\mockpp_24\;$(BCB)\lib\obj;$(BCB)\lib +Item15=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item16=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib Item17=..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item18=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib +Item18=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib [HistoryLists\hlDebugSourcePath] Count=1 @@ -138,35 +138,35 @@ [HistoryLists\hlIntOutputDir] Count=7 -Item0=c:\tmp\compile\mockpp_23\ -Item1=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item0=c:\tmp\compile\mockpp_24\ +Item1=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item2=c:\temp Item3=output -Item4=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item4=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item6=D:\CBuilder5\Projects\output\ [HistoryLists\hlFinalOutputDir] Count=8 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ +Item2=c:\tmp\compile\mockpp_24\ Item3=c:\temp Item4=output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item6=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item6=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item7=output [HistoryLists\hIBPIOutputDir] Count=10 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ -Item3=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item2=c:\tmp\compile\mockpp_24\ +Item3=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item4=c:\temp -Item5=e:\Eigene Dateien\c++\mockpp_23\bcb5\output\ +Item5=e:\Eigene Dateien\c++\mockpp_24\bcb5\output\ Item6=output\ -Item7=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item7=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item8=D:\CBuilder5\Projects\output\ Item9=output Index: verifying.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/verifying.bpr,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- verifying.bpr 13 Mar 2005 19:13:23 -0000 1.9 +++ verifying.bpr 13 Mar 2005 19:34:13 -0000 1.10 @@ -3,12 +3,12 @@ <PROJECT> <MACROS> <VERSION value="BCB.05.03"/> - <PROJECT value="c:\tmp\compile\verifying_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\verifying.obj"/> + <PROJECT value="c:\tmp\compile\verifying_24.exe"/> + <OBJFILES value="c:\tmp\compile\mockpp_24\\verifying.obj"/> <RESFILES value=""/> <DEFFILE value=""/> <RESDEPEN value="$(RESFILES)"/> - <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> + <LIBFILES value="c:\tmp\compile\mockpp_24.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi @@ -25,17 +25,17 @@ <USERDEFINES value="__DLL___;_DEBUG"/> <SYSDEFINES value="NO_STRICT;_NO_VCL;_RTLDLL;USEPACKAGES"/> <MAINSOURCE value="verifying.bpf"/> - <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> - <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> + <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> + <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> <WARNINGS value="-w-par"/> </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_24\" -N0"c:\tmp\compile\mockpp_24\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zi"/> - <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_23\" -D"" -ap -Tpe -x -Gn -v"/> + <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_24\" -D"" -ap -Tpe -x -Gn -v"/> </OPTIONS> <LINKER> <ALLOBJ value="c0x32.obj $(PACKAGES) $(OBJFILES)"/> @@ -72,59 +72,59 @@ [HistoryLists\hlIncludePath] Count=30 -Item0=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include -Item1=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include -Item2=..\mockpp_23\examples\tutorial;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include -Item3=..\mockpp_23\examples\tutorial;..\..\..\..\src;$(BCB)\include;..\..\..\cppunit.ups\include -Item4=..\mockpp_23\examples\tutorial;..\..\..;$(BCB)\include;..\..\..\cppunit.ups\include -Item5=..\mockpp_23\examples\tutorial;..\..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include +Item0=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include +Item1=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include +Item2=..\mockpp_24\examples\tutorial;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include +Item3=..\mockpp_24\examples\tutorial;..\..\..\..\src;$(BCB)\include;..\..\..\cppunit.ups\include +Item4=..\mockpp_24\examples\tutorial;..\..\..;$(BCB)\include;..\..\..\cppunit.ups\include +Item5=..\mockpp_24\examples\tutorial;..\..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include Item6=..\..;$(BCB)\include;..\..\..\cppunit.ups\include -Item7=..\mockpp_23\examples\tutorial;..\..\mockpp;$(BCB)\include;..\..\..\..\cppunit.ups\include +Item7=..\mockpp_24\examples\tutorial;..\..\mockpp;$(BCB)\include;..\..\..\..\cppunit.ups\include Item8=..;$(BCB)\include;..\..\..\..\cppunit.ups\include -Item9=..\mockpp_23\examples\tutorial;..\examples\tutorial;..\examples;..\..\..\mockpp;$(BCB)\include;..\..\..\..\cppunit.ups\include -Item10=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include -Item11=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include -Item12=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include -Item13=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item14=..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item15=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include -Item16=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include -Item17=..\mockpp_23\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include -Item18=..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item9=..\mockpp_24\examples\tutorial;..\examples\tutorial;..\examples;..\..\..\mockpp;$(BCB)\include;..\..\..\..\cppunit.ups\include +Item10=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include +Item11=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include +Item12=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include +Item13=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item14=..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item15=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include +Item16=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include +Item17=..\mockpp_24\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include +Item18=..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item19=..;$(BCB)\include;..\..\..\cppunit-1.8.0\include -Item20=..\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item20=..\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item21=..;$(BCB)\include;X:\src\cppunit-1.8.0\include -Item22=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item23=..;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item24=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item25=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item26=.. ;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item27=.. ;..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include -Item28=..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item29=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat +Item22=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item23=..;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item24=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item25=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item26=.. ;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item27=.. ;..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include +Item28=..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item29=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat [HistoryLists\hlLibraryPath] Count=20 -Item0=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib -Item1=..\mockpp_23\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib +Item0=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib +Item1=..\mockpp_24\examples\tutorial;..\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib Item2=$(BCB)\lib\obj;$(BCB)\lib -Item3=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item4=..\mockpp_23\examples;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item5=..\mockpp_23\examples;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item6=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item7=..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item8=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat -Item9=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item10=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item11=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output -Item12=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_23\bcb5\output -Item13=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output -Item14=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib -Item15=..\mockpp_23\apps;D:\CBuilder5\mockpp_23\;$(BCB)\lib\obj;$(BCB)\lib -Item16=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item17=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item3=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item4=..\mockpp_24\examples;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item5=..\mockpp_24\examples;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item6=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item7=..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item8=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat +Item9=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item10=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item11=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output +Item12=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_24\bcb5\output +Item13=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output +Item14=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib +Item15=..\mockpp_24\apps;D:\CBuilder5\mockpp_24\;$(BCB)\lib\obj;$(BCB)\lib +Item16=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item17=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib Item18=..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item19=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib +Item19=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib [HistoryLists\hlDebugSourcePath] Count=1 @@ -139,35 +139,35 @@ [HistoryLists\hlIntOutputDir] Count=7 -Item0=c:\tmp\compile\mockpp_23\ -Item1=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item0=c:\tmp\compile\mockpp_24\ +Item1=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item2=c:\temp Item3=output -Item4=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item4=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item6=D:\CBuilder5\Projects\output\ [HistoryLists\hlFinalOutputDir] Count=8 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ +Item2=c:\tmp\compile\mockpp_24\ Item3=c:\temp Item4=output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item6=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item6=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item7=output [HistoryLists\hIBPIOutputDir] Count=10 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ -Item3=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item2=c:\tmp\compile\mockpp_24\ +Item3=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item4=c:\temp -Item5=e:\Eigene Dateien\c++\mockpp_23\bcb5\output\ +Item5=e:\Eigene Dateien\c++\mockpp_24\bcb5\output\ Item6=output\ -Item7=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item7=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item8=D:\CBuilder5\Projects\output\ Item9=output Index: mock_test.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_test.bpf,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- mock_test.bpf 12 Mar 2005 18:33:14 -0000 1.26 +++ mock_test.bpf 13 Mar 2005 19:34:12 -0000 1.27 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\tests\AssertMo_test.cpp"); USEUNIT("..\mockpp\tests\ExpectationCounter_test.cpp"); Index: mock_greeter.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_greeter.bpr,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- mock_greeter.bpr 13 Mar 2005 19:13:07 -0000 1.17 +++ mock_greeter.bpr 13 Mar 2005 19:34:12 -0000 1.18 @@ -3,12 +3,12 @@ <PROJECT> <MACROS> <VERSION value="BCB.05.03"/> - <PROJECT value="c:\tmp\compile\mock_greeter_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\mock_greeter.obj"/> + <PROJECT value="c:\tmp\compile\mock_greeter_24.exe"/> + <OBJFILES value="c:\tmp\compile\mockpp_24\\mock_greeter.obj"/> <RESFILES value=""/> <DEFFILE value=""/> <RESDEPEN value="$(RESFILES)"/> - <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> + <LIBFILES value="c:\tmp\compile\mockpp_24.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi @@ -25,17 +25,17 @@ <USERDEFINES value="__DLL___"/> <SYSDEFINES value="NO_STRICT;_NO_VCL;_RTLDLL;USEPACKAGES"/> <MAINSOURCE value="mock_greeter.bpf"/> - <INCLUDEPATH value="..\mockpp\examples;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> - <LIBPATH value="..\mockpp\examples;..\mockpp_23\examples;$(BCB)\lib\obj;$(BCB)\lib"/> + <INCLUDEPATH value="..\mockpp\examples;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> + <LIBPATH value="..\mockpp\examples;..\mockpp_24\examples;$(BCB)\lib\obj;$(BCB)\lib"/> <WARNINGS value="-w-par"/> </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_24\" -N0"c:\tmp\compile\mockpp_24\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> - <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_23\" -D"" -ap -Tpe -x -Gn -v"/> + <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_24\" -D"" -ap -Tpe -x -Gn -v"/> </OPTIONS> <LINKER> <ALLOBJ value="c0x32.obj $(PACKAGES) $(OBJFILES)"/> @@ -72,57 +72,57 @@ [HistoryLists\hlIncludePath] Count=30 -Item0=..\mockpp\examples;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include -Item1=..\mockpp\examples;..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include -Item2=..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include -Item3=..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item4=..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item5=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include -Item6=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include -Item7=..\mockpp_23\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include -Item8=..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item0=..\mockpp\examples;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include +Item1=..\mockpp\examples;..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include +Item2=..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit.ups\include +Item3=..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item4=..\mockpp_24\examples;..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item5=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include +Item6=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include +Item7=..\mockpp_24\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include +Item8=..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item9=..;$(BCB)\include;..\..\..\cppunit-1.8.0\include -Item10=..\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item10=..\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item11=..;$(BCB)\include;X:\src\cppunit-1.8.0\include -Item12=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item13=..;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item14=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item15=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item16=.. ;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item17=.. ;..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include -Item18=..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item19=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat +Item12=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item13=..;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item14=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item15=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item16=.. ;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item17=.. ;..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include +Item18=..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item19=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat Item20=..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat -Item21=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item22=..\mockpp_23\tests;..\mockpp;$(BCB)\include -Item23=..\mockpp_23\tests;..\mockpp;$(BCB)/include -Item24=..\mockpp_23\tests;..\mockpp +Item21=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item22=..\mockpp_24\tests;..\mockpp;$(BCB)\include +Item23=..\mockpp_24\tests;..\mockpp;$(BCB)/include +Item24=..\mockpp_24\tests;..\mockpp Item25=..\mockpp -Item26=..\mockpp_23\tests;..\mockpp_23\mockpp -Item27=..\mockpp_23\mockpp -Item28=..\mockpp_23\tests;..\mockpp_23\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item29=..\mockpp_23\tests;E:\Eigene Dateien\c++\mockpp_23\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item26=..\mockpp_24\tests;..\mockpp_24\mockpp +Item27=..\mockpp_24\mockpp +Item28=..\mockpp_24\tests;..\mockpp_24\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item29=..\mockpp_24\tests;E:\Eigene Dateien\c++\mockpp_24\mockpp;$(BCB)\include;$(BCB)\include\vcl [HistoryLists\hlLibraryPath] Count=18 -Item0=..\mockpp\examples;..\mockpp_23\examples;$(BCB)\lib\obj;$(BCB)\lib +Item0=..\mockpp\examples;..\mockpp_24\examples;$(BCB)\lib\obj;$(BCB)\lib Item1=$(BCB)\lib\obj;$(BCB)\lib -Item2=..\mockpp_23\examples;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item3=..\mockpp_23\examples;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item4=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item5=..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item6=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat -Item7=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item8=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item9=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output -Item10=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_23\bcb5\output -Item11=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output -Item12=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib -Item13=..\mockpp_23\apps;D:\CBuilder5\mockpp_23\;$(BCB)\lib\obj;$(BCB)\lib -Item14=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item15=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item2=..\mockpp_24\examples;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item3=..\mockpp_24\examples;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item4=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item5=..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item6=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat +Item7=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item8=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item9=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output +Item10=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_24\bcb5\output +Item11=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output +Item12=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib +Item13=..\mockpp_24\apps;D:\CBuilder5\mockpp_24\;$(BCB)\lib\obj;$(BCB)\lib +Item14=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item15=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib Item16=..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item17=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib +Item17=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib [HistoryLists\hlDebugSourcePath] Count=1 @@ -136,35 +136,35 @@ [HistoryLists\hlIntOutputDir] Count=7 -Item0=c:\tmp\compile\mockpp_23\ -Item1=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item0=c:\tmp\compile\mockpp_24\ +Item1=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item2=c:\temp Item3=output -Item4=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item4=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item6=D:\CBuilder5\Projects\output\ [HistoryLists\hlFinalOutputDir] Count=8 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ +Item2=c:\tmp\compile\mockpp_24\ Item3=c:\temp Item4=output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item6=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item6=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item7=output [HistoryLists\hIBPIOutputDir] Count=10 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ -Item3=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item2=c:\tmp\compile\mockpp_24\ +Item3=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item4=c:\temp -Item5=e:\Eigene Dateien\c++\mockpp_23\bcb5\output\ +Item5=e:\Eigene Dateien\c++\mockpp_24\bcb5\output\ Item6=output\ -Item7=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item7=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item8=D:\CBuilder5\Projects\output\ Item9=output Index: poormock.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/poormock.bpf,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- poormock.bpf 1 Mar 2005 19:34:29 -0000 1.10 +++ poormock.bpf 13 Mar 2005 19:34:12 -0000 1.11 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\examples\tutorial\poormock.cpp"); USEUNIT("..\mockpp\examples\tutorial\consumer.cpp"); Index: verifying.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/verifying.bpf,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- verifying.bpf 1 Mar 2005 19:34:29 -0000 1.8 +++ verifying.bpf 13 Mar 2005 19:34:12 -0000 1.9 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\examples\tutorial\verifying.cpp"); T//--------------------------------------------------------------------------- Index: mock_greeter.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_greeter.bpf,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- mock_greeter.bpf 1 Mar 2005 19:34:29 -0000 1.13 +++ mock_greeter.bpf 13 Mar 2005 19:34:12 -0000 1.14 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\examples\mock_greeter.cpp"); //--------------------------------------------------------------------------- Index: mock_test.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_test.bpr,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- mock_test.bpr 13 Mar 2005 19:13:07 -0000 1.29 +++ mock_test.bpr 13 Mar 2005 19:34:12 -0000 1.30 @@ -3,48 +3,48 @@ <PROJECT> <MACROS> <VERSION value="BCB.05.03"/> - <PROJECT value="c:\tmp\compile\mock_test_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\AssertMo_test.obj - c:\tmp\compile\mockpp_23\\ExpectationCounter_test.obj - c:\tmp\compile\mockpp_23\\ExpectationCounterRange_test.obj - c:\tmp\compile\mockpp_23\\ExpectationList_test.obj - c:\tmp\compile\mockpp_23\\ExpectationMap_test.obj - c:\tmp\compile\mockpp_23\\ExpectationSegment_test.obj - c:\tmp\compile\mockpp_23\\ExpectationSet_test.obj - c:\tmp\compile\mockpp_23\\ExpectationValue_test.obj - c:\tmp\compile\mockpp_23\\Formatter_test.obj - c:\tmp\compile\mockpp_23\\mock_test.obj - c:\tmp\compile\mockpp_23\\VerifyingTestCase_test.obj - c:\tmp\compile\mockpp_23\\Assert_test.obj - c:\tmp\compile\mockpp_23\\MockObject_test.obj - c:\tmp\compile\mockpp_23\\mockpp_test.obj - c:\tmp\compile\mockpp_23\\ReturnObjectList_test.obj - c:\tmp\compile\mockpp_23\\Verifiable_test.obj - c:\tmp\compile\mockpp_23\\TrackingCounter_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_void_test.obj - c:\tmp\compile\mockpp_23\\Exception_test.obj - c:\tmp\compile\mockpp_23\\ExpectationBoundary_test.obj - c:\tmp\compile\mockpp_23\\Throwable_test.obj - c:\tmp\compile\mockpp_23\\ThrowableList_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_1_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_1_void_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_2_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_2_void_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_3_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_3_void_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_4_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_4_void_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_5_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_5_void_test.obj - c:\tmp\compile\mockpp_23\\MixedMockObject_5_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_template_test.obj - c:\tmp\compile\mockpp_23\\VisitableMockObject_test.obj - c:\tmp\compile\mockpp_23\\ExpectationConglomeration_test.obj - c:\tmp\compile\mockpp_23\\classes_ABCDE.obj"/> + <PROJECT value="c:\tmp\compile\mock_test_24.exe"/> + <OBJFILES value="c:\tmp\compile\mockpp_24\\AssertMo_test.obj + c:\tmp\compile\mockpp_24\\ExpectationCounter_test.obj + c:\tmp\compile\mockpp_24\\ExpectationCounterRange_test.obj + c:\tmp\compile\mockpp_24\\ExpectationList_test.obj + c:\tmp\compile\mockpp_24\\ExpectationMap_test.obj + c:\tmp\compile\mockpp_24\\ExpectationSegment_test.obj + c:\tmp\compile\mockpp_24\\ExpectationSet_test.obj + c:\tmp\compile\mockpp_24\\ExpectationValue_test.obj + c:\tmp\compile\mockpp_24\\Formatter_test.obj + c:\tmp\compile\mockpp_24\\mock_test.obj + c:\tmp\compile\mockpp_24\\VerifyingTestCase_test.obj + c:\tmp\compile\mockpp_24\\Assert_test.obj + c:\tmp\compile\mockpp_24\\MockObject_test.obj + c:\tmp\compile\mockpp_24\\mockpp_test.obj + c:\tmp\compile\mockpp_24\\ReturnObjectList_test.obj + c:\tmp\compile\mockpp_24\\Verifiable_test.obj + c:\tmp\compile\mockpp_24\\TrackingCounter_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_void_test.obj + c:\tmp\compile\mockpp_24\\Exception_test.obj + c:\tmp\compile\mockpp_24\\ExpectationBoundary_test.obj + c:\tmp\compile\mockpp_24\\Throwable_test.obj + c:\tmp\compile\mockpp_24\\ThrowableList_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_1_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_1_void_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_2_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_2_void_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_3_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_3_void_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_4_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_4_void_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_5_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_5_void_test.obj + c:\tmp\compile\mockpp_24\\MixedMockObject_5_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_template_test.obj + c:\tmp\compile\mockpp_24\\VisitableMockObject_test.obj + c:\tmp\compile\mockpp_24\\ExpectationConglomeration_test.obj + c:\tmp\compile\mockpp_24\\classes_ABCDE.obj"/> <RESFILES value=""/> <DEFFILE value=""/> <RESDEPEN value="$(RESFILES)"/> - <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> + <LIBFILES value="c:\tmp\compile\mockpp_24.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi @@ -61,17 +61,17 @@ <USERDEFINES value="__DLL___"/> <SYSDEFINES value="NO_STRICT;_NO_VCL;_RTLDLL;USEPACKAGES"/> <MAINSOURCE value="mock_test.bpf"/> - <INCLUDEPATH value="..\mockpp\tests;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> - <LIBPATH value="..\mockpp\tests;..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib"/> + <INCLUDEPATH value="..\mockpp\tests;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> + <LIBPATH value="..\mockpp\tests;..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib"/> <WARNINGS value="-w-par"/> </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_24\" -N0"c:\tmp\compile\mockpp_24\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> - <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_23\" -D"" -ap -Tpe -x -Gn -v"/> + <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_24\" -D"" -ap -Tpe -x -Gn -v"/> </OPTIONS> <LINKER> <ALLOBJ value="c0x32.obj $(PACKAGES) $(OBJFILES)"/> @@ -108,56 +108,56 @@ [HistoryLists\hlIncludePath] Count=30 -Item0=..\mockpp\tests;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include -Item1=..\mockpp\tests;..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include +Item0=..\mockpp\tests;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include +Item1=..\mockpp\tests;..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.10.2\include Item2=..\..\mockpp;$(BCB)\include;..\..\..\cppunit.ups\include -Item3=..\tests;tests;\\SONNE\HOMES\Documents\src\mockpp_23\mockpp\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item3=..\tests;tests;\\SONNE\HOMES\Documents\src\mockpp_24\mockpp\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include Item4=..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item5=..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include;.. -Item6=..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item7=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include -Item8=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include -Item9=..\mockpp_23\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include -Item10=..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item5=..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include;.. +Item6=..\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item7=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include +Item8=..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include +Item9=..\mockpp_24\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include +Item10=..\mockpp_24\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item11=..;$(BCB)\include;..\..\..\cppunit-1.8.0\include -Item12=..\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item12=..\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.8.0\include Item13=..;$(BCB)\include;X:\src\cppunit-1.8.0\include -Item14=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item15=..;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item16=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include -Item17=..\..\mockpp;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item18=.. ;..\mockpp_23\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ -Item19=.. ;..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include -Item20=..\mockpp_23\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item21=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat +Item14=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item15=..;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item16=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include +Item17=..\..\mockpp;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item18=.. ;..\mockpp_24\tests;..\mockpp;..\expat;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include\ +Item19=.. ;..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;C:\wx2\include +Item20=..\mockpp_24\tests;..\expat;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item21=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat Item22=..\mockpp;$(BCB)\include;$(BCB)\include\vcl;expat -Item23=..\mockpp_23\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl -Item24=..\mockpp_23\tests;..\mockpp;$(BCB)\include -Item25=..\mockpp_23\tests;..\mockpp;$(BCB)/include -Item26=..\mockpp_23\tests;..\mockpp +Item23=..\mockpp_24\tests;..\mockpp;$(BCB)\include;$(BCB)\include\vcl +Item24=..\mockpp_24\tests;..\mockpp;$(BCB)\include +Item25=..\mockpp_24\tests;..\mockpp;$(BCB)/include +Item26=..\mockpp_24\tests;..\mockpp Item27=..\mockpp -Item28=..\mockpp_23\tests;..\mockpp_23\mockpp -Item29=..\mockpp_23\mockpp +Item28=..\mockpp_24\tests;..\mockpp_24\mockpp +Item29=..\mockpp_24\mockpp [HistoryLists\hlLibraryPath] Count=17 -Item0=..\mockpp\tests;..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib +Item0=..\mockpp\tests;..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib Item1=$(BCB)\lib\obj;$(BCB)\lib -Item2=..\tests;tests;\\SONNE\HOMES\Documents\src\mockpp_23\mockpp\mockpp_23\tests;\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item3=\\SONNE\HOMES\src\mockpp_23\mockpp\mockpp_23\tests;..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item4=..\mockpp_23\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib -Item5=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat -Item6=..\mockpp_23\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item7=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin -Item8=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;output -Item9=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_23\bcb5\output -Item10=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output -Item11=..\mockpp_23\apps;$(BCB)\lib\obj;$(BCB)\lib -Item12=..\mockpp_23\apps;D:\CBuilder5\mockpp_23\;$(BCB)\lib\obj;$(BCB)\lib -Item13=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item14=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item2=..\tests;tests;\\SONNE\HOMES\Documents\src\mockpp_24\mockpp\mockpp_24\tests;\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item3=\\SONNE\HOMES\src\mockpp_24\mockpp\mockpp_24\tests;..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item4=..\mockpp_24\tests;..\expat;$(BCB)\lib\obj;$(BCB)\lib +Item5=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;expat +Item6=..\mockpp_24\tests;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item7=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output;bin +Item8=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;output +Item9=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;E:\Eigene Dateien\c++\mockpp_24\bcb5\output +Item10=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib;..\output +Item11=..\mockpp_24\apps;$(BCB)\lib\obj;$(BCB)\lib +Item12=..\mockpp_24\apps;D:\CBuilder5\mockpp_24\;$(BCB)\lib\obj;$(BCB)\lib +Item13=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps\;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib +Item14=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;..\mockpp;$(BCB)\lib\obj;$(BCB)\lib Item15=..\mockpp;$(BCB)\lib\obj;$(BCB)\lib -Item16=e:\Eigene Dateien\c++\mockpp_23\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib +Item16=e:\Eigene Dateien\c++\mockpp_24\mockpp\apps;$(BCB)\lib\obj;$(BCB)\lib [HistoryLists\hlDebugSourcePath] Count=1 @@ -171,35 +171,35 @@ [HistoryLists\hlIntOutputDir] Count=7 -Item0=c:\tmp\compile\mockpp_23\ -Item1=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item0=c:\tmp\compile\mockpp_24\ +Item1=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item2=c:\temp Item3=output -Item4=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item4=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item6=D:\CBuilder5\Projects\output\ [HistoryLists\hlFinalOutputDir] Count=8 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ +Item2=c:\tmp\compile\mockpp_24\ Item3=c:\temp Item4=output\ -Item5=E:\Eigene Dateien\c++\mockpp_23\bcb5\output\ -Item6=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item5=E:\Eigene Dateien\c++\mockpp_24\bcb5\output\ +Item6=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item7=output [HistoryLists\hIBPIOutputDir] Count=10 Item0=c:\tmp\compile\ Item1=c:\tmp\compile -Item2=c:\tmp\compile\mockpp_23\ -Item3=c:\tmp\compile\mockpp_23\ulxr_bcb5\ +Item2=c:\tmp\compile\mockpp_24\ +Item3=c:\tmp\compile\mockpp_24\ulxr_bcb5\ Item4=c:\temp -Item5=e:\Eigene Dateien\c++\mockpp_23\bcb5\output\ +Item5=e:\Eigene Dateien\c++\mockpp_24\bcb5\output\ Item6=output\ -Item7=E:\Eigene Dateien\c++\mockpp_23\bcb5\output +Item7=E:\Eigene Dateien\c++\mockpp_24\bcb5\output Item8=D:\CBuilder5\Projects\output\ Item9=output Index: chainmock.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/chainmock.bpf,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- chainmock.bpf 1 Mar 2005 19:34:29 -0000 1.10 +++ chainmock.bpf 13 Mar 2005 19:34:12 -0000 1.11 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\examples\tutorial\chainmock.cpp"); USEUNIT("..\mockpp\examples\tutorial\consumer.cpp"); Index: jmock_test.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/jmock_test.bpf,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- jmock_test.bpf 4 Mar 2005 17:53:53 -0000 1.16 +++ jmock_test.bpf 13 Mar 2005 19:34:12 -0000 1.17 @@ -1,4 +1,4 @@ -USELIB("c:\tmp\compile\mockpp_23.lib"); +USELIB("c:\tmp\compile\mockpp_24.lib"); USELIB("c:\tmp\compile\cppunit_1_10.lib"); USEUNIT("..\mockpp\tests\AbstractInvocationDispatcher_test.cpp"); USEUNIT("..\mockpp\tests\ChainingMockBuilder_test.cpp"); Index: visitmock.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/visitmock.bpr,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- visitmock.bpr 1 Mar 2005 19:34:29 -0000 1.12 +++ visitmock.bpr 13 Mar 2005 19:34:13 -0000 1.13 @@ -3,13 +3,13 @@ <PROJECT> <MACROS> <VERSION value="BCB.05.03"/> - <PROJECT value="c:\tmp\compile\visitmock_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\visitmock.obj - c:\tmp\compile\mockpp_23\\consumer.obj"/> + <PROJECT value="c:\tmp\compile\visitmock_24.exe"/> + <OBJFILES value="c:\tmp\compile\mockpp_24\\visitmock.obj + c:\tmp\compile\mockpp_24\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> <RESDEPEN value="$(RESFILES)"/> - <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> + <LIBFILES value="c:\tmp\compile\mockpp_24.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi @@ -26,17 +26,17 @@ <USERDEFINES value="__DLL___"/> <SYSDEFINES value="NO_STRICT;_NO_VCL;_RTLDLL;USEPACKAGES"/> <MAINSOURCE value="visitmock.bpf"/> - <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> - <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> + <INCLUDEPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include"/> + <LIBPATH value="..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;$(BCB)\lib\obj;$(BCB)\lib"/> <WARNINGS value="-w-par"/> </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_24\" -N0"c:\tmp\compile\mockpp_24\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> - <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_23\" -D"" -ap -Tpe -x -Gn -v"/> + <LFLAGS value="-l"c:\tmp\compile\" -I"c:\tmp\compile\mockpp_24\" -D"" -ap -Tpe -x -Gn -v"/> </OPTIONS> <LINKER> <ALLOBJ value="c0x32.obj $(PACKAGES) $(OBJFILES)"/> @@ -73,58 +73,58 @@ [HistoryLists\hlIncludePath] Count=30 -Item0=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include -Item1=..\mockpp\examples\tutorial;..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include -Item2=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..;$(BCB)\include;..\..\..\cppunit.ups\include -Item3=..\mockpp_23\examples\tutorial;..\mockpp_23\examples;..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item4=..\mockpp_23\examples;..\mockpp_23\tests;..\..\mockpp;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include -Item5=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include;X:\src\cppunit-1.8.0\include -Item6=..\mockpp_23\tests;..;$(BCB)\include;..\..\cppunit\include -Item7=..\mockpp_23\tests;..;$(BCB)\include;B:\cvs\ups\src\3party\cppunit\include -Item8=..\mockpp_23\tests;..;$(BCB)\include;..\..\..\cppunit-1.8.0\include +Item0=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include;..\..\cppunit-1.10\include +Item1=..\mockpp\examples\tutorial;..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\..\mockpp;$(BCB)\include;..\..\..\cppunit-1.10.2\include +Item2=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..;$(BCB)\include;..\..\..\cppunit.ups\include +Item3=..\mockpp_24\examples\tutorial;..\mockpp_24\examples;..\mockpp_24\tests;..;$(BCB)\include;..\..\cppunit\include;..\..\..\cppunit-1.8.0\include +Item4=..\mockpp_24\exa... [truncated message content] |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:34:26
|
Update of /cvsroot/mockpp/mockpp/bcbX In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31643/bcbX Modified Files: basicmock.cbx chainmock.cbx cppunit.cbx jmock_test.cbx mock_greeter.cbx mock_test.cbx mockpp.cbx poormock-se.cbx poormock.cbx verifying.cbx visitmock.cbx Log Message: increment version number Index: cppunit.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/cppunit.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cppunit.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ cppunit.cbx 13 Mar 2005 19:34:13 -0000 1.7 @@ -101,7 +101,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\cppunit_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\cppunit_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> @@ -117,7 +117,7 @@ <file path="../mockpp/examples/tutorial/cppunit.cpp"> <property category="unique" name="id" value="1"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> </project> Index: chainmock.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/chainmock.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- chainmock.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ chainmock.cbx 13 Mar 2005 19:34:13 -0000 1.7 @@ -101,7 +101,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\chainmock_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\chainmock_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> @@ -117,7 +117,7 @@ <file path="../mockpp/examples/tutorial/consumer.cpp"> <property category="unique" name="id" value="5"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> </project> Index: poormock.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/poormock.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- poormock.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ poormock.cbx 13 Mar 2005 19:34:14 -0000 1.7 @@ -101,7 +101,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\poormock_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\poormock_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> Index: poormock-se.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/poormock-se.cbx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- poormock-se.cbx 1 Mar 2005 19:35:08 -0000 1.4 +++ poormock-se.cbx 13 Mar 2005 19:34:14 -0000 1.5 @@ -101,7 +101,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\poormock-se_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\poormock-se_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> Index: mock_greeter.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/mock_greeter.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- mock_greeter.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ mock_greeter.cbx 13 Mar 2005 19:34:13 -0000 1.7 @@ -98,7 +98,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mock_greeter_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mock_greeter_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> @@ -114,7 +114,7 @@ <file path="../mockpp/examples/mock_greeter.cpp"> <property category="unique" name="id" value="1"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> </project> Index: mockpp.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/mockpp.cbx,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- mockpp.cbx 5 Mar 2005 15:20:10 -0000 1.11 +++ mockpp.cbx 13 Mar 2005 19:34:14 -0000 1.12 @@ -150,7 +150,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mockpp_23.dll"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mockpp_24.dll"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.3" value="stlp.lib"/> Index: visitmock.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/visitmock.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- visitmock.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ visitmock.cbx 13 Mar 2005 19:34:14 -0000 1.7 @@ -120,7 +120,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\visitmock_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\visitmock_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.MinGW.Debug_Build" name="saved" value="1"/> @@ -134,7 +134,7 @@ <file path="../mockpp/examples/tutorial/consumer.cpp"> <property category="unique" name="id" value="5"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> <file path="../mockpp/examples/tutorial/visitmock.cpp"> Index: jmock_test.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/jmock_test.cbx,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- jmock_test.cbx 4 Mar 2005 17:53:53 -0000 1.10 +++ jmock_test.cbx 13 Mar 2005 19:34:13 -0000 1.11 @@ -114,7 +114,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\jmock_test_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\jmock_test_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.3" value="stlp.lib"/> @@ -340,7 +340,7 @@ <file path="../mockpp/tests/MockObject_test.cpp"> <property category="unique" name="id" value="53"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="71"/> </file> <file path="../mockpp/tests/NoArgumentsMatcher_test.cpp"> Index: mock_test.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/mock_test.cbx,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- mock_test.cbx 1 Mar 2005 19:35:08 -0000 1.7 +++ mock_test.cbx 13 Mar 2005 19:34:13 -0000 1.8 @@ -108,7 +108,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mock_test_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\mock_test_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.3" value="stlp.lib"/> @@ -170,7 +170,7 @@ <file path="../mockpp/tests/MockObject_test.cpp"> <property category="unique" name="id" value="15"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="37"/> </file> <file path="../mockpp/tests/mockpp_test.cpp"> Index: basicmock.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/basicmock.cbx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- basicmock.cbx 1 Mar 2005 19:35:08 -0000 1.6 +++ basicmock.cbx 13 Mar 2005 19:34:13 -0000 1.7 @@ -101,7 +101,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\basicmock_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\basicmock_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> @@ -117,7 +117,7 @@ <file path="../mockpp/examples/tutorial/consumer.cpp"> <property category="unique" name="id" value="5"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> </project> Index: verifying.cbx =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcbX/verifying.cbx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- verifying.cbx 1 Mar 2005 19:35:08 -0000 1.5 +++ verifying.cbx 13 Mar 2005 19:34:14 -0000 1.6 @@ -100,7 +100,7 @@ <property category="win32.Debug_Build.win32b.ilink32" name="option.responsefile.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.v.enabled" value="1"/> <property category="win32.Debug_Build.win32b.ilink32" name="option.x.enabled" value="1"/> - <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\verifying_23.exe"/> + <property category="win32.Debug_Build.win32b.ilink32" name="param.exefile.1" value="c:\tmp\compilex\verifying_24.exe"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.1" value="cw32.lib"/> <property category="win32.Debug_Build.win32b.ilink32" name="param.libfiles.2" value="import32.lib"/> <property category="win32.win32b.Debug_Build" name="saved" value="1"/> @@ -113,7 +113,7 @@ <file path="C%|/tmp/compilex/cppunit_1_10.lib"> <property category="unique" name="id" value="4"/> </file> - <file path="C%|/tmp/compilex/mockpp_23.lib"> + <file path="C%|/tmp/compilex/mockpp_24.lib"> <property category="unique" name="id" value="3"/> </file> <file path="../mockpp/examples/tutorial/verifying.cpp"> |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:14:27
|
Update of /cvsroot/mockpp/mockpp/bcb5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526/bcb5 Modified Files: basicmock.bpr chainmock.bpr cppunit.bpr mock_greeter.bpr mock_test.bpr mockpp.bpg mockpp.bpr poormock-se.bpr poormock.bpr verifying.bpr Log Message: fixed actually non-working IsInstanceOf Index: poormock.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/poormock.bpr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- poormock.bpr 1 Mar 2005 19:34:29 -0000 1.11 +++ poormock.bpr 13 Mar 2005 19:13:08 -0000 1.12 @@ -4,7 +4,7 @@ <MACROS> <VERSION value="BCB.05.03"/> <PROJECT value="c:\tmp\compile\poormock_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\poormock.obj + <OBJFILES value="c:\tmp\compile\mockpp_23\\poormock.obj c:\tmp\compile\mockpp_23\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> @@ -12,9 +12,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -32,7 +32,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: verifying.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/verifying.bpr,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- verifying.bpr 1 Mar 2005 19:34:29 -0000 1.8 +++ verifying.bpr 13 Mar 2005 19:13:23 -0000 1.9 @@ -11,9 +11,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -31,7 +31,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zi"/> Index: poormock-se.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/poormock-se.bpr,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- poormock-se.bpr 1 Mar 2005 19:34:29 -0000 1.5 +++ poormock-se.bpr 13 Mar 2005 19:13:07 -0000 1.6 @@ -4,7 +4,7 @@ <MACROS> <VERSION value="BCB.05.03"/> <PROJECT value="c:\tmp\compile\poormock_se_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\poormock-se.obj + <OBJFILES value="c:\tmp\compile\mockpp_23\\poormock-se.obj c:\tmp\compile\mockpp_23\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> @@ -12,9 +12,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -32,7 +32,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: basicmock.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/basicmock.bpr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- basicmock.bpr 1 Mar 2005 19:34:29 -0000 1.11 +++ basicmock.bpr 13 Mar 2005 19:13:07 -0000 1.12 @@ -4,7 +4,7 @@ <MACROS> <VERSION value="BCB.05.03"/> <PROJECT value="c:\tmp\compile\basicmock_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\basicmock.obj + <OBJFILES value="c:\tmp\compile\mockpp_23\\basicmock.obj c:\tmp\compile\mockpp_23\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> @@ -12,9 +12,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -32,7 +32,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: mockpp.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mockpp.bpr,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- mockpp.bpr 5 Mar 2005 14:53:38 -0000 1.31 +++ mockpp.bpr 13 Mar 2005 19:13:07 -0000 1.32 @@ -16,6 +16,7 @@ c:\tmp\compile\mockpp_23\\Verifiable.obj c:\tmp\compile\mockpp_23\\VerifiableList.obj c:\tmp\compile\mockpp_23\\VisitableMockObject.obj + c:\tmp\compile\mockpp_23\\MixedMockObject.obj c:\tmp\compile\mockpp_23\\Throwable.obj c:\tmp\compile\mockpp_23\\TrackingCounter.obj c:\tmp\compile\mockpp_23\\mockpp.obj Index: mock_greeter.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_greeter.bpr,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- mock_greeter.bpr 1 Mar 2005 19:34:29 -0000 1.16 +++ mock_greeter.bpr 13 Mar 2005 19:13:07 -0000 1.17 @@ -11,9 +11,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples"/> <PATHPAS value=".;"/> @@ -31,7 +31,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: chainmock.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/chainmock.bpr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- chainmock.bpr 1 Mar 2005 19:34:29 -0000 1.11 +++ chainmock.bpr 13 Mar 2005 19:13:07 -0000 1.12 @@ -4,7 +4,7 @@ <MACROS> <VERSION value="BCB.05.03"/> <PROJECT value="c:\tmp\compile\chainmock_23.exe"/> - <OBJFILES value="c:\tmp\compile\mockpp_23\\chainmock.obj + <OBJFILES value="c:\tmp\compile\mockpp_23\\chainmock.obj c:\tmp\compile\mockpp_23\\consumer.obj"/> <RESFILES value=""/> <DEFFILE value=""/> @@ -12,9 +12,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -32,7 +32,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: cppunit.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/cppunit.bpr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- cppunit.bpr 1 Mar 2005 19:34:29 -0000 1.11 +++ cppunit.bpr 13 Mar 2005 19:13:07 -0000 1.12 @@ -11,9 +11,9 @@ <LIBFILES value="c:\tmp\compile\mockpp_23.lib c:\tmp\compile\cppunit_1_10.lib"/> <LIBRARIES value=""/> <SPARELIBS value=""/> - <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi - ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi - VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi + <PACKAGES value="VCL50.bpi VCLX50.bpi bcbsmp50.bpi QRPT50.bpi VCLDB50.bpi VCLBDE50.bpi + ibsmp50.bpi VCLDBX50.bpi TEEUI50.bpi TEEDB50.bpi TEE50.bpi TEEQR50.bpi + VCLIB50.bpi bcbie50.bpi VCLIE50.bpi INETDB50.bpi INET50.bpi NMFAST50.bpi dclocx50.bpi bcb2kaxserver50.bpi"/> <PATHCPP value=".;..\mockpp\examples\tutorial"/> <PATHPAS value=".;"/> @@ -31,7 +31,7 @@ </MACROS> <OPTIONS> <CFLAG1 value="-vGc -vGt -vGd -Od -Vx -Ve -X- -r- -a8 -b- -k -y -v -vi- -tWC -tWM -c"/> - <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W + <PFLAGS value="-N2"c:\tmp\compile\mockpp_23\" -N0"c:\tmp\compile\mockpp_23\" -$YD -$W -$O- -v -JPHNE -M"/> <RFLAGS value=""/> <AFLAGS value="/mx /w2 /zd"/> Index: mock_test.bpr =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_test.bpr,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- mock_test.bpr 1 Mar 2005 19:34:29 -0000 1.28 +++ mock_test.bpr 13 Mar 2005 19:13:07 -0000 1.29 @@ -36,6 +36,7 @@ c:\tmp\compile\mockpp_23\\VisitableMockObject_4_void_test.obj c:\tmp\compile\mockpp_23\\VisitableMockObject_5_test.obj c:\tmp\compile\mockpp_23\\VisitableMockObject_5_void_test.obj + c:\tmp\compile\mockpp_23\\MixedMockObject_5_test.obj c:\tmp\compile\mockpp_23\\VisitableMockObject_template_test.obj c:\tmp\compile\mockpp_23\\VisitableMockObject_test.obj c:\tmp\compile\mockpp_23\\ExpectationConglomeration_test.obj Index: mockpp.bpg =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mockpp.bpg,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- mockpp.bpg 1 Mar 2005 19:34:29 -0000 1.14 +++ mockpp.bpg 13 Mar 2005 19:13:07 -0000 1.15 @@ -9,9 +9,9 @@ DCC = $(ROOT)\bin\dcc32.exe $** BRCC = $(ROOT)\bin\brcc32.exe $** #------------------------------------------------------------------------------ -PROJECTS = mockpp_23.dll mock_test_20.exe jmock_test_20.exe mock_greeter_20.exe \ - basicmock_20.exe visitmock_20.exe chainmock_20.exe poormock_20.exe poormock_se_20.exe verifying_20.exe \ - cppunit_20.exe +PROJECTS = mockpp_23.dll jmock_test_20.exe mock_test_20.exe mock_greeter_20.exe \ + basicmock_20.exe visitmock_20.exe chainmock_20.exe poormock_20.exe \ + poormock_se_20.exe verifying_20.exe cppunit_20.exe #------------------------------------------------------------------------------ default: $(PROJECTS) #------------------------------------------------------------------------------ @@ -60,3 +60,4 @@ $(ROOT)\bin\bpr2mak $** $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak + |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:14:20
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526/mockpp/chaining Modified Files: ChainingMockObjectSupport.h Log Message: fixed actually non-working IsInstanceOf Index: ChainingMockObjectSupport.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainingMockObjectSupport.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChainingMockObjectSupport.h 13 Mar 2005 17:14:32 -0000 1.19 +++ ChainingMockObjectSupport.h 13 Mar 2005 19:13:24 -0000 1.20 @@ -222,16 +222,19 @@ } -/** Creates a constraint that checks if an object is derived +/** Creates a constraint that checks if an object is derived from a base class. + * The base class is needed since dynamic_cast checks for an existing traversal + * from \c derived to \c base. * @ingroup grp_constraint_abbrev * @see mockpp::IsInstanceOf * @return the new constraint */ -template <typename T> -typename Constraint<T*>::AP -isA( const T & /*operandClass*/ ) +template <typename ROOT, + typename DERIVED> +typename Constraint<ROOT*>::AP +isA( const DERIVED & /*operandClass*/ ) { - return new IsInstanceOf<T>(); + return new IsInstanceOf<ROOT, DERIVED>(); } |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:14:06
|
Update of /cvsroot/mockpp/mockpp/mockpp/constraint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526/mockpp/constraint Modified Files: IsInstanceOf.h Log Message: fixed actually non-working IsInstanceOf Index: IsInstanceOf.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsInstanceOf.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- IsInstanceOf.h 13 Mar 2005 17:14:32 -0000 1.16 +++ IsInstanceOf.h 13 Mar 2005 19:13:25 -0000 1.17 @@ -43,24 +43,27 @@ /** Tests whether the value is derived from the given class. + * A base class is needed since dynamic_cast checks for an existing traversal + * from \c derived to \c base. * @ingroup grp_constraint * @see mockpp::isA */ -template <typename T> -class IsInstanceOf : public Constraint<T*> +template <typename BASE, + typename DERIVED> +class IsInstanceOf : public Constraint<BASE*> { - public: + typedef BASE* pBASE; - typedef T* pT; + public: /** Evaluates the constraint * @param obj the object against which the constraint is evaluated. * @return true: obj meets the constraint, * @return false if it does not. */ - virtual bool eval( const pT &obj ) const + virtual bool eval( const pBASE &obj ) const { - return dynamic_cast<const T*>(obj) != 0; + return dynamic_cast<const DERIVED*>(obj) != 0; } /** Appends the description of this object to the buffer. @@ -70,7 +73,7 @@ virtual String describeTo( String &buffer ) const { buffer += MOCKPP_PCHAR("derived from ") - + MOCKPP_GET_STRING(typeid(T).name()); + + MOCKPP_GET_STRING(typeid(DERIVED).name()); return buffer; } }; |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:13:46
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526 Modified Files: ChangeLog Log Message: fixed actually non-working IsInstanceOf Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- ChangeLog 13 Mar 2005 17:14:31 -0000 1.35 +++ ChangeLog 13 Mar 2005 19:13:06 -0000 1.36 @@ -3,15 +3,16 @@ mockpp history -------------- -2005-03-04 1.6.0: - MixedMockObject combines enhanced mock objects +2005-03-13 1.6.0: - MixedMockObject combines enhanced mock objects - scope fixes for g++ 3.4.3 - - fix for g++ 2.95.3 under OpenBsd3.1 + - fixes for g++ 2.95.3 and OpenBsd3.1 + - fixed non-working class IsInstanceOf 2005-03-04 1.5.0: - added class ConstraintList - VisitableMockObjects and the according controller also take Constraints as objects instead of actual values. - fixed some compiler warnings - - added #include for gcc 2.95 (which seems to cimpile fine :-) + - added #include for gcc 2.95 (which seems to compile fine :-) - new matcher class UnlimitedMatcher - better support for typeless constraints - seperated some files into header and source file |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:13:38
|
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526/mockpp/tests Modified Files: ChainingMockObjectSupport_test.cpp IsInstanceOf_test.cpp Log Message: fixed actually non-working IsInstanceOf Index: ChainingMockObjectSupport_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockObjectSupport_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- ChainingMockObjectSupport_test.cpp 13 Mar 2005 17:14:34 -0000 1.24 +++ ChainingMockObjectSupport_test.cpp 13 Mar 2005 19:13:26 -0000 1.25 @@ -129,7 +129,7 @@ }; -class C +class C : public B { public: @@ -139,22 +139,34 @@ }; +class D +{ + public: + + virtual ~D() {} + + const char *pc; +}; + + void ChainingMockObjectSupport_test::test_instance() { A a; B b; C c; + D d; - mockpp::Constraint<A*>::AP instance0 = mockpp::isA( a ); - mockpp::Constraint<A*>::AP instance = mockpp::isA( A() ); - CPPUNIT_ASSERT( instance->eval( &a ) == true ); + mockpp::Constraint<A*>::AP instance0 = mockpp::isA<A, B>( b ); + mockpp::Constraint<A*>::AP instance1 = mockpp::isA<A>( b ); + + mockpp::Constraint<A*>::AP instance = mockpp::isA<A>( B() ); + CPPUNIT_ASSERT( instance->eval((B*) &a ) == false ); CPPUNIT_ASSERT( instance->eval( &b ) == true ); + CPPUNIT_ASSERT( instance->eval( &c ) == true ); + CPPUNIT_ASSERT( instance->eval((B*) &d ) == false ); B &rb = *((B*) 0); CPPUNIT_ASSERT( instance->eval( &rb ) == false ); - - A *pa = (A*)&c; - CPPUNIT_ASSERT( instance->eval( pa ) == false ); } @@ -364,6 +376,9 @@ matcher = mockpp::atLeastOnce(); CPPUNIT_ASSERT( matcher->toString() == MOCKPP_PCHAR( "expected at least once" ) ); + matcher = mockpp::unlimited(); + CPPUNIT_ASSERT( matcher->toString() == MOCKPP_PCHAR( "expected unlimited invocations" ) ); + matcher = mockpp::atMost( 3 ); CPPUNIT_ASSERT( matcher->toString() == MOCKPP_PCHAR( "expected at most 3 times, invoked 0 times" ) ); Index: IsInstanceOf_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsInstanceOf_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IsInstanceOf_test.cpp 13 Mar 2005 17:14:34 -0000 1.10 +++ IsInstanceOf_test.cpp 13 Mar 2005 19:13:27 -0000 1.11 @@ -85,50 +85,52 @@ { public: - virtual ~C() { } + virtual ~C() {} - std::string c; + std::string b; +}; + + +class D +{ + public: + + virtual ~D() {} + + const char *pc; }; void IsInstanceOf_test::test_describe() { - mockpp::IsInstanceOf<A> instance; + mockpp::IsInstanceOf<A, B> instance; mockpp::String s = MOCKPP_PCHAR("instance?"); CPPUNIT_ASSERT(instance.describeTo(s).find(MOCKPP_PCHAR("instance?derived from ")) == 0); CPPUNIT_ASSERT(s.find(MOCKPP_PCHAR("instance?derived from ")) == 0); } -class BB { public: float f; virtual ~BB() {} }; -class DD : public BB { public: int a; virtual ~DD() {} }; - void IsInstanceOf_test::test_invoke() { A *pa = new A; A *pb = new B; A *pc = new C; + A *pd = (A*)new D; - mockpp::IsInstanceOf<B> instance; - CPPUNIT_ASSERT(instance.eval((B*)pa) == true); - CPPUNIT_ASSERT(instance.eval((B*)pb) == true); - CPPUNIT_ASSERT(instance.eval((B*)pc) == true); + mockpp::IsInstanceOf<A, B> instance; + + CPPUNIT_ASSERT(instance.eval((B*)pa) == false); + CPPUNIT_ASSERT(instance.eval(pb) == true); + CPPUNIT_ASSERT(instance.eval(pc) == true); + CPPUNIT_ASSERT(instance.eval((B*)pd) == false); B &rb = *((B*) 0); CPPUNIT_ASSERT(instance.eval(&rb) == false); - - BB* pb1 = new DD; // unclear but ok - BB* pb2 = new BB; - std::cout << (void*) pb1 << std::endl; - std::cout << (void*) pb2 << std::endl; - - DD* pd = dynamic_cast<DD*>(pb1); // ok: pb actually points to a D - DD* pd2 = dynamic_cast<DD*>(pb2); // pb2 points to a B not a D - // cast was bad so pd2 == NULL - - std::cout << (void*) pd << std::endl; - std::cout << (void*) pd2 << std::endl; + delete pa; + delete pb; + delete pc; + delete pd; } |
From: Ewald A. <ewa...@us...> - 2005-03-13 19:13:37
|
Update of /cvsroot/mockpp/mockpp/mockpp/examples/tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25526/mockpp/examples/tutorial Modified Files: interface.h Log Message: fixed actually non-working IsInstanceOf Index: interface.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/interface.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- interface.h 4 Mar 2005 21:10:02 -0000 1.3 +++ interface.h 13 Mar 2005 19:13:26 -0000 1.4 @@ -50,7 +50,7 @@ */ virtual std::string read() = 0; - /** Writes a record o the file + /** Writes a record to the file * @param s the record (one complete line) */ virtual void write(const std::string &s) = 0; |
From: Ewald A. <ewa...@us...> - 2005-03-13 17:14:44
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23067/mockpp/chaining Modified Files: ChainingMockObjectSupport.h Log Message: intermediate update Index: ChainingMockObjectSupport.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainingMockObjectSupport.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChainingMockObjectSupport.h 3 Mar 2005 23:32:26 -0000 1.18 +++ ChainingMockObjectSupport.h 13 Mar 2005 17:14:32 -0000 1.19 @@ -228,7 +228,7 @@ * @return the new constraint */ template <typename T> -typename Constraint<T>::AP +typename Constraint<T*>::AP isA( const T & /*operandClass*/ ) { return new IsInstanceOf<T>(); |
From: Ewald A. <ewa...@us...> - 2005-03-13 17:14:44
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23067 Modified Files: ChangeLog mockpp.kdevelop Log Message: intermediate update Index: mockpp.kdevelop =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp.kdevelop,v retrieving revision 1.65 retrieving revision 1.66 diff -u -d -r1.65 -r1.66 --- mockpp.kdevelop 11 Mar 2005 00:24:53 -0000 1.65 +++ mockpp.kdevelop 13 Mar 2005 17:14:31 -0000 1.66 @@ -17,7 +17,7 @@ </ignoreparts> <projectdirectory>.</projectdirectory> <absoluteprojectpath>false</absoluteprojectpath> - <description></description> + <description/> <secondaryLanguages> <language>Perl</language> <language>Bash</language> @@ -28,7 +28,7 @@ <kdevautoproject> <general> <activetarget>mockpp/tests/mock_test</activetarget> - <useconfiguration>unicode_gcc_3_4</useconfiguration> + <useconfiguration>unicode_debug</useconfiguration> </general> <run> <mainprogram/> @@ -61,18 +61,18 @@ <envvars/> <configargs>--enable-unicode</configargs> <builddir>/home/compile/mockpp/u</builddir> - <topsourcedir></topsourcedir> - <cppflags></cppflags> - <ldflags></ldflags> + <topsourcedir/> + <cppflags/> + <ldflags/> <ccompiler>kdevgccoptions</ccompiler> <cxxcompiler>kdevgppoptions</cxxcompiler> <f77compiler>kdevg77options</f77compiler> - <ccompilerbinary></ccompilerbinary> - <cxxcompilerbinary></cxxcompilerbinary> - <f77compilerbinary></f77compilerbinary> - <cflags></cflags> - <cxxflags></cxxflags> - <f77flags></f77flags> + <ccompilerbinary/> + <cxxcompilerbinary/> + <f77compilerbinary/> + <cflags/> + <cxxflags/> + <f77flags/> </unicode> <ascii> <envvars/> @@ -129,32 +129,32 @@ <envvars/> <configargs>--enable-unicode --enable-debug=full prefix=/tmp/install</configargs> <builddir>/home/compile/mockpp/gcc-3.4</builddir> - <topsourcedir></topsourcedir> - <cppflags></cppflags> - <ldflags></ldflags> + <topsourcedir/> + <cppflags/> + <ldflags/> <ccompiler>kdevgccoptions</ccompiler> <cxxcompiler>kdevgppoptions</cxxcompiler> <f77compiler>kdevg77options</f77compiler> - <ccompilerbinary></ccompilerbinary> + <ccompilerbinary/> <cxxcompilerbinary>g++-3.4.3</cxxcompilerbinary> - <f77compilerbinary></f77compilerbinary> - <cflags></cflags> + <f77compilerbinary/> + <cflags/> <cxxflags>-O0 -g -Wall </cxxflags> - <f77flags></f77flags> + <f77flags/> </unicode_gcc_3_4> </configurations> </kdevautoproject> <kdevdebugger> <general> <dbgshell>libtool</dbgshell> - <programargs></programargs> - <gdbpath></gdbpath> + <programargs/> + <gdbpath/> <breakonloadinglibs>true</breakonloadinglibs> <separatetty>false</separatetty> <floatingtoolbar>true</floatingtoolbar> - <configGdbScript></configGdbScript> - <runShellScript></runShellScript> - <runGdbScript></runGdbScript> + <configGdbScript/> + <runShellScript/> + <runGdbScript/> </general> <display> <staticmembers>true</staticmembers> Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- ChangeLog 11 Mar 2005 00:24:53 -0000 1.34 +++ ChangeLog 13 Mar 2005 17:14:31 -0000 1.35 @@ -5,6 +5,7 @@ 2005-03-04 1.6.0: - MixedMockObject combines enhanced mock objects - scope fixes for g++ 3.4.3 + - fix for g++ 2.95.3 under OpenBsd3.1 2005-03-04 1.5.0: - added class ConstraintList - VisitableMockObjects and the according controller also take |
From: Ewald A. <ewa...@us...> - 2005-03-13 17:14:44
|
Update of /cvsroot/mockpp/mockpp/mockpp/constraint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23067/mockpp/constraint Modified Files: IsInstanceOf.h Log Message: intermediate update Index: IsInstanceOf.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsInstanceOf.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- IsInstanceOf.h 6 Jan 2005 13:09:22 -0000 1.15 +++ IsInstanceOf.h 13 Mar 2005 17:14:32 -0000 1.16 @@ -47,18 +47,20 @@ * @see mockpp::isA */ template <typename T> -class IsInstanceOf : public Constraint<T> +class IsInstanceOf : public Constraint<T*> { public: + typedef T* pT; + /** Evaluates the constraint * @param obj the object against which the constraint is evaluated. * @return true: obj meets the constraint, * @return false if it does not. */ - virtual bool eval( const T &obj ) const + virtual bool eval( const pT &obj ) const { - return dynamic_cast<const T*>(&obj) != 0; + return dynamic_cast<const T*>(obj) != 0; } /** Appends the description of this object to the buffer. |
From: Ewald A. <ewa...@us...> - 2005-03-13 17:14:44
|
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23067/mockpp/tests Modified Files: ChainingMockObjectSupport_test.cpp IsInstanceOf_test.cpp Log Message: intermediate update Index: ChainingMockObjectSupport_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockObjectSupport_test.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ChainingMockObjectSupport_test.cpp 12 Mar 2005 17:50:55 -0000 1.23 +++ ChainingMockObjectSupport_test.cpp 13 Mar 2005 17:14:34 -0000 1.24 @@ -121,6 +121,10 @@ class B : public A { + public: + + virtual ~B() {} + int a; }; @@ -141,16 +145,16 @@ B b; C c; - mockpp::Constraint<A>::AP instance0 = mockpp::isA( a ); - mockpp::Constraint<A>::AP instance = mockpp::isA( A() ); - CPPUNIT_ASSERT( instance->eval( a ) == true ); - CPPUNIT_ASSERT( instance->eval( b ) == true ); + mockpp::Constraint<A*>::AP instance0 = mockpp::isA( a ); + mockpp::Constraint<A*>::AP instance = mockpp::isA( A() ); + CPPUNIT_ASSERT( instance->eval( &a ) == true ); + CPPUNIT_ASSERT( instance->eval( &b ) == true ); - B &rb1 = *((B*) 0); - CPPUNIT_ASSERT( instance->eval( rb1 ) == false ); + B &rb = *((B*) 0); + CPPUNIT_ASSERT( instance->eval( &rb ) == false ); - B &rb2 = (B&) c; - CPPUNIT_ASSERT( instance->eval( rb2 ) == false ); + A *pa = (A*)&c; + CPPUNIT_ASSERT( instance->eval( pa ) == false ); } Index: IsInstanceOf_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsInstanceOf_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- IsInstanceOf_test.cpp 12 Mar 2005 17:50:55 -0000 1.9 +++ IsInstanceOf_test.cpp 13 Mar 2005 17:14:34 -0000 1.10 @@ -38,6 +38,7 @@ #include <mockpp/constraint/IsInstanceOf.h> #include <cppunit/extensions/HelperMacros.h> +#include <iostream> class IsInstanceOf_test : public CppUnit::TestFixture { @@ -69,20 +70,27 @@ int a; }; + class B : public A { - int a; + public: + + virtual ~B() {} + + double b; }; -class C + +class C : public B { public: - virtual ~C() { } + virtual ~C() { } - int a; + std::string c; }; + void IsInstanceOf_test::test_describe() { mockpp::IsInstanceOf<A> instance; @@ -91,22 +99,36 @@ CPPUNIT_ASSERT(s.find(MOCKPP_PCHAR("instance?derived from ")) == 0); } +class BB { public: float f; virtual ~BB() {} }; +class DD : public BB { public: int a; virtual ~DD() {} }; + void IsInstanceOf_test::test_invoke() { - A a; - B b; - C c; + A *pa = new A; + A *pb = new B; + A *pc = new C; - mockpp::IsInstanceOf<A> instance; - CPPUNIT_ASSERT(instance.eval(a) == true); - CPPUNIT_ASSERT(instance.eval(b) == true); + mockpp::IsInstanceOf<B> instance; + CPPUNIT_ASSERT(instance.eval((B*)pa) == true); + CPPUNIT_ASSERT(instance.eval((B*)pb) == true); + CPPUNIT_ASSERT(instance.eval((B*)pc) == true); - B &rb1 = *((B*) 0); - CPPUNIT_ASSERT(instance.eval(rb1) == false); + B &rb = *((B*) 0); + CPPUNIT_ASSERT(instance.eval(&rb) == false); - B &rb2 = (B&) c; - CPPUNIT_ASSERT(instance.eval(rb2) == false); + + BB* pb1 = new DD; // unclear but ok + BB* pb2 = new BB; + std::cout << (void*) pb1 << std::endl; + std::cout << (void*) pb2 << std::endl; + + DD* pd = dynamic_cast<DD*>(pb1); // ok: pb actually points to a D + DD* pd2 = dynamic_cast<DD*>(pb2); // pb2 points to a B not a D + // cast was bad so pd2 == NULL + + std::cout << (void*) pd << std::endl; + std::cout << (void*) pd2 << std::endl; } |
From: Ewald A. <ewa...@us...> - 2005-03-12 18:34:36
|
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4114/mockpp/tests Modified Files: MixedMockObject_5_test.cpp Log Message: more tests Index: MixedMockObject_5_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MixedMockObject_5_test.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- MixedMockObject_5_test.cpp 6 Mar 2005 21:45:50 -0000 1.1 +++ MixedMockObject_5_test.cpp 12 Mar 2005 18:34:27 -0000 1.2 @@ -57,6 +57,7 @@ CPPUNIT_TEST_SUITE( MixedMockObject_5_test ); CPPUNIT_TEST(test_controller); + CPPUNIT_TEST(test_chainer); CPPUNIT_TEST(test_return); CPPUNIT_TEST_SUITE_END(); @@ -64,6 +65,7 @@ public: void test_controller(); + void test_chainer(); void test_return(); }; @@ -145,31 +147,73 @@ } +void MixedMockObject_5_test::test_chainer() +{ + MyMixedMockObject_5 mcm(MOCKPP_PCHAR("chainable-object")); + + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed0) c_chainer0(&mcm); + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed1) c_chainer1(&mcm); + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed2) c_chainer2(&mcm); + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed3) c_chainer3(&mcm); + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed4) c_chainer4(&mcm); + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed5) c_chainer5(&mcm); + + c_chainer1.expects(mockpp::once()) + .with(mockpp::any()); + + c_chainer2.expects(mockpp::once()) + .with(mockpp::any(), + mockpp::any()); +} + + void MixedMockObject_5_test::test_return() { - MyMixedMockObject_5 mvo(MOCKPP_PCHAR("mvo")); - MOCKPP_CONTROLLER_FOR(MyMixedMockObject_5, visit_mixed5) ctr (&mvo); + MyMixedMockObject_5 mcm(MOCKPP_PCHAR("chainable-object")); + + MOCKPP_CHAINER_FOR(MyMixedMockObject_5, chain_mixed5) c_chainer5(&mcm); + MOCKPP_CONTROLLER_FOR(MyMixedMockObject_5, visit_mixed5) ctr (&mcm); + + c_chainer5.expects(mockpp::once()) + .with(mockpp::eq(CA(1)), + mockpp::eq(CB(2)), + mockpp::eq(CC(3)), + mockpp::eq(CD(4)), + mockpp::eq(CE(5))) + .will(mockpp::returnValue(12345)); + + c_chainer5.expects(mockpp::once()) + .with(mockpp::eq(CA(5)), + mockpp::eq(CB(4)), + mockpp::eq(CC(3)), + mockpp::eq(CD(2)), + mockpp::eq(CE(1))) + .will(mockpp::returnValue(54321)); ctr.setDefaultReturnValue(123); ctr.addReturnValue(1,2); ctr.addReturnValue(11, 2); - mvo.visit_mixed5(1, 2, 3, 4, 5); - mvo.visit_mixed5(1, 2, 3, 4, 5); - mvo.visit_mixed5(2, 2, 3, 4, 5); - mvo.visit_mixed5(2, 2, 3, 4, 5); - mvo.visit_mixed5(3, 2, 3, 4, 5); - mvo.visit_mixed5(4, 2, 3, 4, 5); + mcm.visit_mixed5(1, 2, 3, 4, 5); + mcm.visit_mixed5(1, 2, 3, 4, 5); + mcm.visit_mixed5(2, 2, 3, 4, 5); + mcm.visit_mixed5(2, 2, 3, 4, 5); + mcm.visit_mixed5(3, 2, 3, 4, 5); + mcm.visit_mixed5(4, 2, 3, 4, 5); - mvo.activate(); + mcm.activate(); - CPPUNIT_ASSERT(1 == mvo.visit_mixed5(1, 2, 3, 4, 5)); - CPPUNIT_ASSERT(1 == mvo.visit_mixed5(1, 2, 3, 4, 5)); - CPPUNIT_ASSERT(11 == mvo.visit_mixed5(2, 2, 3, 4, 5)); - CPPUNIT_ASSERT(11 == mvo.visit_mixed5(2, 2, 3, 4, 5)); - CPPUNIT_ASSERT(123 == mvo.visit_mixed5(3, 2, 3, 4, 5)); - CPPUNIT_ASSERT(123 == mvo.visit_mixed5(4, 2, 3, 4, 5)); - mvo.verify(); + CPPUNIT_ASSERT(1 == mcm.visit_mixed5(1, 2, 3, 4, 5)); + CPPUNIT_ASSERT(1 == mcm.visit_mixed5(1, 2, 3, 4, 5)); + CPPUNIT_ASSERT(11 == mcm.visit_mixed5(2, 2, 3, 4, 5)); + CPPUNIT_ASSERT(11 == mcm.visit_mixed5(2, 2, 3, 4, 5)); + CPPUNIT_ASSERT(123 == mcm.visit_mixed5(3, 2, 3, 4, 5)); + CPPUNIT_ASSERT(123 == mcm.visit_mixed5(4, 2, 3, 4, 5)); + + CPPUNIT_ASSERT(12345 == mcm.chain_mixed5(CA(1), CB(2), CC(3), CD(4), CE(5))); + CPPUNIT_ASSERT(54321 == mcm.chain_mixed5(CA(5), CB(4), CC(3), CD(2), CE(1))); + + mcm.verify(); } |
From: Ewald A. <ewa...@us...> - 2005-03-12 18:33:24
|
Update of /cvsroot/mockpp/mockpp/bcb5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3788/bcb5 Modified Files: mockpp.bpf mock_test.bpf Log Message: added new files Index: mock_test.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mock_test.bpf,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- mock_test.bpf 1 Mar 2005 19:34:29 -0000 1.25 +++ mock_test.bpf 12 Mar 2005 18:33:14 -0000 1.26 @@ -32,6 +32,7 @@ USEUNIT("..\mockpp\tests\VisitableMockObject_4_void_test.cpp"); USEUNIT("..\mockpp\tests\VisitableMockObject_5_test.cpp"); USEUNIT("..\mockpp\tests\VisitableMockObject_5_void_test.cpp"); +USEUNIT("..\mockpp\tests\MixedMockObject_5_test.cpp"); USEUNIT("..\mockpp\tests\VisitableMockObject_template_test.cpp"); USEUNIT("..\mockpp\tests\VisitableMockObject_test.cpp"); USEUNIT("..\mockpp\tests\ExpectationConglomeration_test.cpp"); Index: mockpp.bpf =================================================================== RCS file: /cvsroot/mockpp/mockpp/bcb5/mockpp.bpf,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- mockpp.bpf 5 Mar 2005 14:53:38 -0000 1.17 +++ mockpp.bpf 12 Mar 2005 18:33:14 -0000 1.18 @@ -11,6 +11,7 @@ USEUNIT("..\mockpp\Verifiable.cpp"); USEUNIT("..\mockpp\VerifiableList.cpp"); USEUNIT("..\mockpp\VisitableMockObject.cpp"); +USEUNIT("..\mockpp\MixedMockObject.cpp"); USEUNIT("..\mockpp\Throwable.cpp"); USEUNIT("..\mockpp\TrackingCounter.cpp"); USEUNIT("..\mockpp\mockpp.cpp"); |
From: Ewald A. <ewa...@us...> - 2005-03-12 17:51:06
|
Update of /cvsroot/mockpp/mockpp/mockpp/examples/tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23860/mockpp/examples/tutorial Modified Files: Makefile.am Log Message: fixes for g++ 2.95.3 under OpenBsd 3.1 Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/Makefile.am,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Makefile.am 19 Feb 2005 14:05:19 -0000 1.19 +++ Makefile.am 12 Mar 2005 17:50:55 -0000 1.20 @@ -1,6 +1,6 @@ INCLUDES = $(all_includes) -I$(top_srcdir) $(EA_EXTRA_INC) -LDADD = ../../libmockpp.la $(LIBCPPUNIT) $(LIBDL) +LDADD = ../../libmockpp.la $(EA_EXTRA_LIB) $(LIBCPPUNIT) $(LIBDL) AM_LDFLAGS = $(all_libraries) |
From: Ewald A. <ewa...@us...> - 2005-03-12 17:51:06
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23860/mockpp/chaining Modified Files: InvocationMocker.h Log Message: fixes for g++ 2.95.3 under OpenBsd 3.1 Index: InvocationMocker.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationMocker.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- InvocationMocker.h 11 Mar 2005 00:24:55 -0000 1.24 +++ InvocationMocker.h 12 Mar 2005 17:50:54 -0000 1.25 @@ -200,7 +200,7 @@ * @return The current content of the buffer data */ virtual String describeTo( String &result, - const List &matchers, + const InvocationMockerBase<R,I>::List &matchers, Stub<R, I> *stub, const String &name ) const = 0; @@ -212,7 +212,7 @@ * @return The current content of the buffer data */ String describeTo( String &result, - const List &matchers, + const InvocationMockerBase<R,I>::List &matchers, TypelessStub<R>* stub, const String &name ) const { |