[Mockpp-commits] mockpp AUTHORS,1.6,1.7 ChangeLog,1.49,1.50 Makefile.am,1.27,1.28 README,1.8,1.9
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-05-07 17:01:35
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5936 Modified Files: AUTHORS ChangeLog Makefile.am README Log Message: cleanup Index: README =================================================================== RCS file: /cvsroot/mockpp/mockpp/README,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- README 12 Sep 2004 14:56:54 -0000 1.8 +++ README 7 May 2005 17:00:55 -0000 1.9 @@ -1,6 +1,7 @@ $Id$ Mock Objects for C++ + ====================== mockpp is a library to facilitate unit tests in the spirit of MockObjects, EasyMock and jMock which were all designed for Java. @@ -13,21 +14,22 @@ Contributed files. * mockpp - Files ported from the original java sources. + Common files ported from the various original java sources. - * mockpp/util - Files ported from the original java sources. + * mockpp/production + Files which help to optimize production code for tests. - * mockpp/dynamic - Files from the original java sources. + * mockpp/util + Files ported from the original MockObjects sources plus + extensions for C++. * mockpp/compat Additial files to keep interfaces compatible taken from - other java packages (junit, ..) + other java packages (junit, ..) plus extensions for C++. * mockpp/docs/en/var/index.html The handbook. It is not part of the source distribution. Either download - it from the same place or generate yourself if you have sgml-tools installed. + it from the same place or generate yourself if you have docbook installed. Just type "make html-files" in the the source directory. * mockpp/docs/api/html/index.html @@ -37,21 +39,24 @@ * mockpp/tests/* Files to help testing the library. They might also serve as a starting point - to learn more about the use. + to learn more about the use. Don't expect the library to run flawlessly unless + you have *all* the tests successfully running. * mockpp/examples/* + mockpp/examples/tutorial/* Example files to show the use of this library. * mockpp/constraint/* - Constraints from the original java sources plus some new ones. + Constraints from the original jmock sources plus some new ones. . * mockpp/matcher/* - Matchers from the original java sources plus some new ones. + Matchers from the original jmock sources plus some new ones. . * mockpp/stub/* - Stubs from the original java sources. + Stubs from the original jmock java sources. . - * mockpp/jmock/* + * mockpp/chaining/* + mockpp/builder/* Core files ported from jMock. In config-bcb5.h/config-msvc.h/... there are some #define's that might be @@ -66,13 +71,16 @@ mockpp is known to run fine on Linux, OpenBSD and Windows. Starting with version 1.2.0 mockpp uses partial template specialisation. In case you use -Microsoft Compilers you might run into trouble. Please send complaints to Microsoft -and ask them, why they don't adopt common standards for years. +Microsoft Compilers before MSVC 7.1 you will run into trouble with these new files. +Please send complaints to Microsoft and ask them, why they don't adopt common standards for years. Ports to not yet working platforms and compilers are highly welcome. Send comments, suggestions and bugfixes to the mailing lists found at -http://mockpp.sf.net (or as second choice to mo...@ew...). +http://mockpp.sf.net (or as a second choice to mo...@ew...). + +There are also several forums available which are also linked to from the +homepage. Happy mocking Ewald Arnold Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/Makefile.am,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- Makefile.am 7 May 2005 12:44:33 -0000 1.27 +++ Makefile.am 7 May 2005 17:00:55 -0000 1.28 @@ -89,6 +89,6 @@ install-data-hook: $(mkdir_p) $(htmldir) - cp $(srcdir)/AUTHORS $(srcdir)/COPYING $(srcdir)/README $(srcdir)/ChangeLog $(pkgdatadir) + $(INSTALL) $(srcdir)/AUTHORS $(srcdir)/COPYING $(srcdir)/README $(srcdir)/ChangeLog $(pkgdatadir) ################################################################# Index: AUTHORS =================================================================== RCS file: /cvsroot/mockpp/mockpp/AUTHORS,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- AUTHORS 2 Apr 2005 14:10:16 -0000 1.6 +++ AUTHORS 7 May 2005 17:00:55 -0000 1.7 @@ -2,7 +2,7 @@ Ewald Arnold, mockpp at ewald-arnold.de FUKUDA, Fumiki (AKA episteme -- 'cuppa' project : http://www.unittest.org/) - Help to port to MSVC6, MSVC7 (up to 1.1.16) + Help to port to MSVC6, MSVC7 (up to mockpp 1.1.16) - Mathieu Champlon, mathieu.champlon at masagroup.net - Help to port to MSVC 7.1 (version 1.7 and later) +Mathieu Champlon, mathieu.champlon at masagroup.net + Help to port to MSVC 7.1 (mockpp 1.7 and later) Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- ChangeLog 6 May 2005 14:23:00 -0000 1.49 +++ ChangeLog 7 May 2005 17:00:55 -0000 1.50 @@ -2,6 +2,11 @@ mockpp history -------------- +2005-05-07 1.8.1: + + - install files below mockpp/production + - fix macro namespace + - rudimentary rpm generation 2005-05-06 1.8.0: |