[Mockpp-commits] mockpp/mockpp/matcher AnyArgumentsMatcher.h,1.17,1.18 InvokeAtLeastMatcher.h,1.14,1
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-04-08 12:00:54
|
Update of /cvsroot/mockpp/mockpp/mockpp/matcher In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26244/mockpp/matcher Modified Files: AnyArgumentsMatcher.h InvokeAtLeastMatcher.h InvokeAtLeastOnceMatcher.h InvokeAtMostMatcher.h InvokeCountMatcher.h InvokeOnceMatcher.h InvokedAfterMatcher.h InvokedBeforeMatcher.h TestFailureMatcher.h UnlimitedMatcher.h Log Message: improve onConsecutiveCalls family Index: InvokeAtLeastMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastMatcher.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- InvokeAtLeastMatcher.h 15 Mar 2006 21:34:06 -0000 1.14 +++ InvokeAtLeastMatcher.h 8 Apr 2006 12:00:37 -0000 1.15 @@ -40,7 +40,7 @@ /** Has the method been invoked at least a count? * @ingroup grp_matcher - * @see MOCKPP_NS::atLeast + * @see mockpp::atLeast */ class InvokeAtLeastMatcher : public InvokedRecorder { Index: InvokeOnceMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeOnceMatcher.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- InvokeOnceMatcher.h 15 Mar 2006 21:34:06 -0000 1.22 +++ InvokeOnceMatcher.h 8 Apr 2006 12:00:37 -0000 1.23 @@ -44,7 +44,7 @@ /** Has the method been invoked exactly once? * @ingroup grp_matcher - * @see MOCKPP_NS::once + * @see mockpp::once */ class InvokeOnceMatcher : public InvokedRecorder { Index: InvokedAfterMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedAfterMatcher.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- InvokedAfterMatcher.h 15 Mar 2006 21:34:06 -0000 1.23 +++ InvokedAfterMatcher.h 8 Apr 2006 12:00:37 -0000 1.24 @@ -45,7 +45,7 @@ /** Has the method been invoked after another? * @ingroup grp_matcher - * @see MOCKPP_NS::MatchBuilder::after + * @see mockpp::MatchBuilder::after */ template <typename I> // Invocation class InvokedAfterMatcher : public StatelessInvocationMatcher<I> Index: InvokeAtLeastOnceMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastOnceMatcher.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- InvokeAtLeastOnceMatcher.h 15 Mar 2006 21:34:06 -0000 1.24 +++ InvokeAtLeastOnceMatcher.h 8 Apr 2006 12:00:37 -0000 1.25 @@ -43,7 +43,7 @@ /** Has the method been invoked at least once? * @ingroup grp_matcher - * @see MOCKPP_NS::atLeastOnce + * @see mockpp::atLeastOnce */ class InvokeAtLeastOnceMatcher : public InvokedRecorder { Index: InvokeAtMostMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtMostMatcher.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- InvokeAtMostMatcher.h 15 Mar 2006 21:34:06 -0000 1.17 +++ InvokeAtMostMatcher.h 8 Apr 2006 12:00:37 -0000 1.18 @@ -39,7 +39,7 @@ /** Has the method been invoked a maximal number of times? * @ingroup grp_matcher - * @see MOCKPP_NS::atMost + * @see mockpp::atMost */ class InvokeAtMostMatcher : public InvokedRecorder { Index: InvokedBeforeMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedBeforeMatcher.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- InvokedBeforeMatcher.h 15 Mar 2006 21:34:06 -0000 1.13 +++ InvokedBeforeMatcher.h 8 Apr 2006 12:00:37 -0000 1.14 @@ -41,7 +41,7 @@ /** Has the method been invoked before another? * @ingroup grp_matcher - * @see MOCKPP_NS::MatchBuilder::before + * @see mockpp::MatchBuilder::before */ template <typename I> // Invocation class InvokedBeforeMatcher : public StatelessInvocationMatcher<I> Index: AnyArgumentsMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/AnyArgumentsMatcher.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- AnyArgumentsMatcher.h 15 Mar 2006 21:34:06 -0000 1.17 +++ AnyArgumentsMatcher.h 8 Apr 2006 12:00:36 -0000 1.18 @@ -43,7 +43,7 @@ /** Matches any arguments. * @ingroup grp_matcher - * @see MOCKPP_NS::any + * @see mockpp::any */ template <typename I> // Invocation class AnyArgumentsMatcher : public StatelessInvocationMatcher<I> Index: UnlimitedMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/UnlimitedMatcher.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- UnlimitedMatcher.h 15 Mar 2006 21:34:06 -0000 1.4 +++ UnlimitedMatcher.h 8 Apr 2006 12:00:37 -0000 1.5 @@ -43,7 +43,7 @@ /** Matches any invcotion * @ingroup grp_matcher - * @see MOCKPP_NS::unlimited + * @see mockpp::unlimited */ class UnlimitedMatcher : public InvokedRecorder { Index: TestFailureMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/TestFailureMatcher.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- TestFailureMatcher.h 15 Mar 2006 21:34:06 -0000 1.24 +++ TestFailureMatcher.h 8 Apr 2006 12:00:37 -0000 1.25 @@ -45,7 +45,7 @@ /** An invocation count matcher that always fails upon invocation * @ingroup grp_matcher - * @see MOCKPP_NS::never + * @see mockpp::never */ class TestFailureMatcher : public TypelessMatcher { Index: InvokeCountMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeCountMatcher.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- InvokeCountMatcher.h 15 Mar 2006 21:34:06 -0000 1.21 +++ InvokeCountMatcher.h 8 Apr 2006 12:00:37 -0000 1.22 @@ -44,7 +44,7 @@ /** Has the object been invoked a given number? * @ingroup grp_matcher - * @see MOCKPP_NS::exactly + * @see mockpp::exactly */ class InvokeCountMatcher : public InvokedRecorder { |