Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5845/mockpp
Modified Files:
mockpp.h VisitableMockMethod.h
Log Message:
docs
Index: mockpp.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- mockpp.h 7 May 2005 12:45:10 -0000 1.56
+++ mockpp.h 18 Nov 2005 08:49:34 -0000 1.57
@@ -35,7 +35,8 @@
\section abstract Abstract
mockpp is a platform independent generic unit testing framework for C++. It's goal is to facilitate
- developing unit tests in the spirit of <a href="http://www.mockobjects.com/">Mock Objects for Java</a>,
+ developing unit tests and integraton tests in the spirit of
+ <a href="http://www.mockobjects.com/">Mock Objects for Java</a>,
<a href="http://www.easymock.org/">EasyMock</a> and <a href="http://www.jmock.org/">jMock</a>.
Mock objects allow you to set up predictible
@@ -62,8 +63,7 @@
- More about visitable mock objects
- \ref grp_controller
- More about chainable mock objects
- - Not really needed but maybe nice to know where the methods are
- located: \ref grp_chainer
+ - \ref grp_chainer
- Sub-expectations
- Stubs
- \ref grp_stub
Index: VisitableMockMethod.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/VisitableMockMethod.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- VisitableMockMethod.h 13 Nov 2005 14:07:12 -0000 1.19
+++ VisitableMockMethod.h 18 Nov 2005 08:49:34 -0000 1.20
@@ -41,6 +41,7 @@
/** Base of all mock methods.
+ * @internal
*/
class VisitableMockMethodBase : public MockObject
{
@@ -187,6 +188,7 @@
/** Base of all mock methods returning some value.
+ * @internal
*/
template <typename R>
class VisitableMockReturningMethodBase : public VisitableMockMethodBase
@@ -281,6 +283,7 @@
/** Base of all mock methods returning void.
+ * @internal
*/
template <>
class VisitableMockReturningMethodBase<void> : public VisitableMockMethodBase
|