[Mockpp-commits] mockpp/mockpp/constraint IsAnything.h,1.21,1.22 IsCloseTo.h,1.20,1.21 IsEqual.h,1.2
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-04-08 12:01:24
|
Update of /cvsroot/mockpp/mockpp/mockpp/constraint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26244/mockpp/constraint Modified Files: IsAnything.h IsCloseTo.h IsEqual.h IsGreaterOrEqual.h IsGreaterThan.h IsInstanceOf.h IsLessOrEqual.h IsLessThan.h IsNot.h IsNothing.h IsSame.h Or.h StringContains.h StringEndsWith.h StringStartsWith.h Log Message: improve onConsecutiveCalls family Index: IsAnything.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsAnything.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- IsAnything.h 15 Mar 2006 21:34:03 -0000 1.21 +++ IsAnything.h 8 Apr 2006 12:00:34 -0000 1.22 @@ -44,7 +44,7 @@ /** A constraint that always returns <code>true</code>. * @ingroup grp_constraint - * @see MOCKPP_NS::any + * @see mockpp::any */ class IsAnything : public TypelessConstraint { Index: IsCloseTo.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsCloseTo.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- IsCloseTo.h 15 Mar 2006 21:34:03 -0000 1.20 +++ IsCloseTo.h 8 Apr 2006 12:00:34 -0000 1.21 @@ -46,7 +46,7 @@ /** Is the value of a number equal to a value within some range of * acceptable deviation? * @ingroup grp_constraint - * @see MOCKPP_NS::eq( const T &operand, const T &deviation ) + * @see mockpp::eq( const T &operand, const T &deviation ) */ template <typename NumberType> class IsCloseTo : public Constraint<NumberType> Index: IsEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsEqual.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- IsEqual.h 15 Mar 2006 21:34:03 -0000 1.23 +++ IsEqual.h 8 Apr 2006 12:00:34 -0000 1.24 @@ -47,7 +47,7 @@ * The default implementation compares the values of the two * objects. * @ingroup grp_constraint - * @see MOCKPP_NS::IsEqual + * @see mockpp::IsEqual * @param left left operand * @param right right operand * @return true if both values are equal @@ -63,8 +63,8 @@ * invoked method? Basically the same as \c IsSame which compares * by reference and a specializable comparison template. * @ingroup grp_constraint - * @see MOCKPP_NS::eq( const T& op ) - * @see MOCKPP_NS::IsSame + * @see mockpp::eq( const T& op ) + * @see mockpp::IsSame */ template <typename T> class IsEqual : public Constraint<T> Index: IsGreaterThan.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsGreaterThan.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- IsGreaterThan.h 15 Mar 2006 21:34:03 -0000 1.17 +++ IsGreaterThan.h 8 Apr 2006 12:00:34 -0000 1.18 @@ -45,7 +45,7 @@ /** Is the value greater than another value? * @ingroup grp_constraint - * @see MOCKPP_NS::gt + * @see mockpp::gt */ template <typename T> class IsGreaterThan : public Constraint<T> Index: IsNot.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsNot.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- IsNot.h 15 Mar 2006 21:34:03 -0000 1.21 +++ IsNot.h 8 Apr 2006 12:00:34 -0000 1.22 @@ -44,7 +44,7 @@ /** Calculates the logical negation of a constraint. * @ingroup grp_constraint - * @see MOCKPP_NS::ne + * @see mockpp::ne */ template <typename T> class IsNot : public Constraint<T> Index: IsLessThan.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsLessThan.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- IsLessThan.h 15 Mar 2006 21:34:03 -0000 1.17 +++ IsLessThan.h 8 Apr 2006 12:00:34 -0000 1.18 @@ -44,7 +44,7 @@ /** Is the value less than another value? * @ingroup grp_constraint - * @see MOCKPP_NS::lt + * @see mockpp::lt */ template <typename T> class IsLessThan : public Constraint<T> Index: IsInstanceOf.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsInstanceOf.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- IsInstanceOf.h 15 Mar 2006 21:34:03 -0000 1.20 +++ IsInstanceOf.h 8 Apr 2006 12:00:34 -0000 1.21 @@ -48,7 +48,7 @@ * A base class is needed since dynamic_cast checks for an existing traversal * from \c derived to \c base. * @ingroup grp_constraint - * @see MOCKPP_NS::isA + * @see mockpp::isA */ template <typename BASE, typename DERIVED> Index: IsGreaterOrEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsGreaterOrEqual.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- IsGreaterOrEqual.h 15 Mar 2006 21:34:03 -0000 1.13 +++ IsGreaterOrEqual.h 8 Apr 2006 12:00:34 -0000 1.14 @@ -41,7 +41,7 @@ /** Is the value greater or equal than another value? * @ingroup grp_constraint - * @see MOCKPP_NS::ge + * @see mockpp::ge */ template <typename T> class IsGreaterOrEqual : public Constraint<T> Index: StringStartsWith.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/StringStartsWith.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- StringStartsWith.h 15 Mar 2006 21:34:03 -0000 1.3 +++ StringStartsWith.h 8 Apr 2006 12:00:34 -0000 1.4 @@ -41,7 +41,7 @@ /** Tests if the argument is a string that contains a substring. * @ingroup grp_constraint - * @see MOCKPP_NS::startsWith + * @see mockpp::startsWith */ template <typename StringType = MOCKPP_NS::String> class StringStartsWith : public Constraint<StringType> Index: IsNothing.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsNothing.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- IsNothing.h 15 Mar 2006 21:34:03 -0000 1.19 +++ IsNothing.h 8 Apr 2006 12:00:34 -0000 1.20 @@ -44,7 +44,7 @@ /** A constraint which is never true. * @ingroup grp_constraint - * @see MOCKPP_NS::nothing + * @see mockpp::nothing */ class IsNothing : public TypelessConstraint { Index: Or.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/Or.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Or.h 15 Mar 2006 21:34:03 -0000 1.20 +++ Or.h 8 Apr 2006 12:00:34 -0000 1.21 @@ -46,7 +46,7 @@ * shortcut, so that the second constraint is not called if the first * constraint returns <code>true</code>. * @ingroup grp_constraint - * @see MOCKPP_NS::logic_or + * @see mockpp::logic_or */ template <typename T> class Or : public Constraint<T> Index: IsSame.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsSame.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- IsSame.h 15 Mar 2006 21:34:03 -0000 1.22 +++ IsSame.h 8 Apr 2006 12:00:34 -0000 1.23 @@ -47,7 +47,7 @@ * The default implementation compares the adresses of the two * objects. * @ingroup grp_constraint - * @see MOCKPP_NS::IsSame + * @see mockpp::IsSame * @param left left operand * @param right right operand * @return true if both operands are equal @@ -64,9 +64,9 @@ * \c IsSame compares by reference and a comparison template which can be * specialized. * @ingroup grp_constraint - * @see MOCKPP_NS::same - * @see MOCKPP_NS::IsEqual - * @see MOCKPP_NS::isSameComparison + * @see mockpp::same + * @see mockpp::IsEqual + * @see mockpp::isSameComparison */ template <typename T> class IsSame : public Constraint<T> Index: StringEndsWith.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/StringEndsWith.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- StringEndsWith.h 15 Mar 2006 21:34:03 -0000 1.4 +++ StringEndsWith.h 8 Apr 2006 12:00:34 -0000 1.5 @@ -41,7 +41,7 @@ /** Tests if the argument is a string that contains a substring. * @ingroup grp_constraint - * @see MOCKPP_NS::endsWith + * @see mockpp::endsWith */ template <typename StringType = MOCKPP_NS::String> class StringEndsWith : public Constraint<StringType> Index: IsLessOrEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsLessOrEqual.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- IsLessOrEqual.h 15 Mar 2006 21:34:03 -0000 1.14 +++ IsLessOrEqual.h 8 Apr 2006 12:00:34 -0000 1.15 @@ -41,7 +41,7 @@ /** Is the value less or equal than another value? * @ingroup grp_constraint - * @see MOCKPP_NS::le + * @see mockpp::le */ template <typename T> class IsLessOrEqual : public Constraint<T> Index: StringContains.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/StringContains.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- StringContains.h 15 Mar 2006 21:34:03 -0000 1.18 +++ StringContains.h 8 Apr 2006 12:00:34 -0000 1.19 @@ -45,7 +45,7 @@ /** Tests if the argument is a string that contains a substring. * @ingroup grp_constraint - * @see MOCKPP_NS::stringContains + * @see mockpp::stringContains */ template <typename StringType = MOCKPP_NS::String> class StringContains : public Constraint<StringType> |