[Mockpp-commits] mockpp/mockpp/tests AbstractInvocationDispatcher_test.cpp,1.26,1.27 AnyArgumentsMat
Brought to you by:
ewald-arnold
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1020/mockpp/tests Modified Files: AbstractInvocationDispatcher_test.cpp AnyArgumentsMatcher_test.cpp ArgumentsMatcher_test.cpp Assert_test.cpp ChainingMockBuilder_test.cpp ConstraintList_test.cpp ConstraintSet_test.cpp CustomStub_test.cpp DefaultResultStub_test.cpp Exception_test.cpp ExpectationBoundary_test.cpp ExpectationConglomeration_test.cpp ExpectationCounterRange_test.cpp ExpectationCounter_test.cpp ExpectationList_test.cpp ExpectationMap_test.cpp ExpectationSegment_test.cpp ExpectationSet_test.cpp ExpectationValue_test.cpp Formatter_test.cpp Invocation_test.cpp IsAnything_test.cpp IsCloseTo_test.cpp IsEqual_test.cpp IsGreaterOrEqual_test.cpp IsGreaterThan_test.cpp IsInstanceOf_test.cpp IsLessOrEqual_test.cpp IsLessThan_test.cpp IsNot_test.cpp IsNothing_test.cpp IsSame_test.cpp MatchBuilder_test.cpp NoArgumentsMatcher_test.cpp NoException_test.cpp Or_test.cpp StringContains_test.cpp StringEndsWith_test.cpp StringStartsWith_test.cpp TestFailureMatcher_test.cpp TestFailureStub_test.cpp ThrowStub_test.cpp ThrowableList_test.cpp Throwable_test.cpp TrackingCounter_test.cpp VerifyingTestCaller_test.cpp VerifyingTestCase_test.cpp VisitableMockMethod_test.cpp VoidStub_test.cpp mockpp_test.cpp Log Message: avoid name collision on win32 Index: Or_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Or_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Or_test.cpp 28 Dec 2005 09:23:31 -0000 1.14 +++ Or_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 @@ -36,7 +36,7 @@ #include <mockpp/constraint/IsAnything.h> #include <mockpp/constraint/IsNothing.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class Or_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: TestFailureMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TestFailureMatcher_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- TestFailureMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ TestFailureMatcher_test.cpp 28 Dec 2005 21:29:21 -0000 1.13 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/matcher/TestFailureMatcher.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class TestFailureMatcher_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: TrackingCounter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TrackingCounter_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- TrackingCounter_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ TrackingCounter_test.cpp 28 Dec 2005 21:29:21 -0000 1.13 @@ -33,7 +33,7 @@ #include "SelectFramework.h" #include <mockpp/TrackingCounter.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/util/AssertMo.h> Index: Invocation_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Invocation_test.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- Invocation_test.cpp 28 Dec 2005 09:23:31 -0000 1.23 +++ Invocation_test.cpp 28 Dec 2005 21:29:21 -0000 1.24 @@ -35,7 +35,7 @@ #include <mockpp/chaining/Invocation.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class Invocation_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ThrowableList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ThrowableList_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ThrowableList_test.cpp 28 Dec 2005 09:23:31 -0000 1.19 +++ ThrowableList_test.cpp 28 Dec 2005 21:29:21 -0000 1.20 @@ -34,7 +34,7 @@ #include <mockpp/ThrowableList.h> #include <mockpp/Throwable.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> Index: IsAnything_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsAnything_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- IsAnything_test.cpp 28 Dec 2005 09:23:31 -0000 1.15 +++ IsAnything_test.cpp 28 Dec 2005 21:29:21 -0000 1.16 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsAnything.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsAnything_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: DefaultResultStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/DefaultResultStub_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- DefaultResultStub_test.cpp 28 Dec 2005 09:23:30 -0000 1.13 +++ DefaultResultStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 @@ -33,7 +33,7 @@ #include <mockpp/stub/DefaultResultStub.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class DefaultResultStub_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationSegment_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationSegment_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ExpectationSegment_test.cpp 28 Dec 2005 09:23:31 -0000 1.17 +++ ExpectationSegment_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationSegment.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationSegment_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsInstanceOf_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsInstanceOf_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- IsInstanceOf_test.cpp 28 Dec 2005 09:23:31 -0000 1.18 +++ IsInstanceOf_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsInstanceOf.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #ifndef MOCKPP_NO_RTTI Index: ExpectationList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationList_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ExpectationList_test.cpp 28 Dec 2005 09:23:31 -0000 1.20 +++ ExpectationList_test.cpp 28 Dec 2005 21:29:21 -0000 1.21 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationList.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationList_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsCloseTo_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsCloseTo_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- IsCloseTo_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ IsCloseTo_test.cpp 28 Dec 2005 21:29:21 -0000 1.13 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsCloseTo.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsCloseTo_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsLessThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessThan_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IsLessThan_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ IsLessThan_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsLessThan.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsLessThan_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ThrowStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ThrowStub_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ThrowStub_test.cpp 28 Dec 2005 09:23:31 -0000 1.16 +++ ThrowStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -33,7 +33,7 @@ #include <mockpp/stub/CustomStub.h> #include <mockpp/Throwable.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/stub/ThrowStub.h> Index: ExpectationCounterRange_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationCounterRange_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ExpectationCounterRange_test.cpp 28 Dec 2005 09:23:31 -0000 1.16 +++ ExpectationCounterRange_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -33,7 +33,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationCounter.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationCounterRange_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationMap_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationMap_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ExpectationMap_test.cpp 28 Dec 2005 09:23:31 -0000 1.20 +++ ExpectationMap_test.cpp 28 Dec 2005 21:29:21 -0000 1.21 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationMap.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationMap_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: VerifyingTestCaller_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VerifyingTestCaller_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- VerifyingTestCaller_test.cpp 28 Dec 2005 19:43:08 -0000 1.16 +++ VerifyingTestCaller_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -39,7 +39,7 @@ # include <memory> #endif -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #if defined (MOCKPP_USE_CXXTEST) Index: IsNothing_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsNothing_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- IsNothing_test.cpp 28 Dec 2005 09:23:31 -0000 1.13 +++ IsNothing_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsNothing.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsNothing_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: CustomStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CustomStub_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- CustomStub_test.cpp 28 Dec 2005 09:23:30 -0000 1.14 +++ CustomStub_test.cpp 28 Dec 2005 21:29:20 -0000 1.15 @@ -33,7 +33,7 @@ #include <mockpp/stub/CustomStub.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class CustomStub_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: Exception_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Exception_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- Exception_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ Exception_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/compat/Exception.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class Exception_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: VisitableMockMethod_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_test.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- VisitableMockMethod_test.cpp 28 Dec 2005 09:23:31 -0000 1.21 +++ VisitableMockMethod_test.cpp 28 Dec 2005 21:29:21 -0000 1.22 @@ -48,7 +48,7 @@ #include <mockpp/constraint/OutBound.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/Throwable.h> Index: Assert_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Assert_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- Assert_test.cpp 28 Dec 2005 09:23:30 -0000 1.22 +++ Assert_test.cpp 28 Dec 2005 21:29:20 -0000 1.23 @@ -31,7 +31,7 @@ #include "SelectFramework.h" -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class Assert_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsLessOrEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessOrEqual_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IsLessOrEqual_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ IsLessOrEqual_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsLessOrEqual.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsLessOrEqual_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationValue_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationValue_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ExpectationValue_test.cpp 28 Dec 2005 09:23:31 -0000 1.17 +++ ExpectationValue_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationValue.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationValue_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: Formatter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Formatter_test.cpp,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- Formatter_test.cpp 28 Dec 2005 19:43:08 -0000 1.34 +++ Formatter_test.cpp 28 Dec 2005 21:29:21 -0000 1.35 @@ -33,7 +33,7 @@ #include "SelectFramework.h" #include <mockpp/compat/Formatter.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/compat/AssertionFailedError.h> Index: VerifyingTestCase_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VerifyingTestCase_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- VerifyingTestCase_test.cpp 28 Dec 2005 09:23:31 -0000 1.22 +++ VerifyingTestCase_test.cpp 28 Dec 2005 21:29:21 -0000 1.23 @@ -45,7 +45,7 @@ #include <mockpp/ExpectationValue.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <cppunit/extensions/HelperMacros.h> #include <cppunit/TestResult.h> Index: IsGreaterThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsGreaterThan_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IsGreaterThan_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ IsGreaterThan_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsGreaterThan.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsGreaterThan_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: NoException_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoException_test.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- NoException_test.cpp 28 Dec 2005 09:23:31 -0000 1.7 +++ NoException_test.cpp 28 Dec 2005 21:29:21 -0000 1.8 @@ -46,7 +46,7 @@ #include <mockpp/util/AssertMo.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/compat/Exception.h> #include "SelectFramework.h" Index: StringContains_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringContains_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- StringContains_test.cpp 28 Dec 2005 09:23:31 -0000 1.14 +++ StringContains_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 @@ -33,7 +33,7 @@ #include <mockpp/constraint/StringContains.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class StringContains_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ChainingMockBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockBuilder_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- ChainingMockBuilder_test.cpp 28 Dec 2005 09:23:30 -0000 1.24 +++ ChainingMockBuilder_test.cpp 28 Dec 2005 21:29:20 -0000 1.25 @@ -42,7 +42,7 @@ #include <mockpp/stub/ReturnStub.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include "classes_ABCDE.h" Index: IsNot_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsNot_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- IsNot_test.cpp 28 Dec 2005 09:23:31 -0000 1.16 +++ IsNot_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -34,7 +34,7 @@ #include <mockpp/constraint/IsNot.h> #include <mockpp/constraint/IsAnything.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsNot_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: MatchBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MatchBuilder_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- MatchBuilder_test.cpp 28 Dec 2005 09:23:31 -0000 1.25 +++ MatchBuilder_test.cpp 28 Dec 2005 21:29:21 -0000 1.26 @@ -36,7 +36,7 @@ #include <mockpp/builder/MatchBuilder.h> #include <mockpp/builder/BuilderNamespace.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/stub/StubHolder.h> Index: VoidStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VoidStub_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- VoidStub_test.cpp 28 Dec 2005 09:23:31 -0000 1.14 +++ VoidStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 @@ -33,7 +33,7 @@ #include <mockpp/stub/VoidStub.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class VoidStub_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsEqual_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsEqual_test.cpp 28 Dec 2005 09:23:31 -0000 1.11 +++ IsEqual_test.cpp 28 Dec 2005 21:29:21 -0000 1.12 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsEqual.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsEqual_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ConstraintSet_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ConstraintSet_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ConstraintSet_test.cpp 28 Dec 2005 09:23:30 -0000 1.18 +++ ConstraintSet_test.cpp 28 Dec 2005 21:29:20 -0000 1.19 @@ -35,7 +35,7 @@ #include <mockpp/constraint/ConstraintSet.h> #include <mockpp/constraint/IsEqual.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ConstraintSet_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationBoundary_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationBoundary_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ExpectationBoundary_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ExpectationBoundary_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -36,7 +36,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationBoundary.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationBoundary_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ConstraintList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ConstraintList_test.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ConstraintList_test.cpp 28 Dec 2005 09:23:30 -0000 1.6 +++ ConstraintList_test.cpp 28 Dec 2005 21:29:20 -0000 1.7 @@ -31,7 +31,7 @@ #include "SelectFramework.h" -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/constraint/ConstraintList.h> #include <mockpp/constraint/IsLessOrEqual.h> Index: StringStartsWith_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringStartsWith_test.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- StringStartsWith_test.cpp 28 Dec 2005 09:23:31 -0000 1.7 +++ StringStartsWith_test.cpp 28 Dec 2005 21:29:21 -0000 1.8 @@ -33,7 +33,7 @@ #include <mockpp/constraint/StringStartsWith.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class StringStartsWith_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationConglomeration_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationConglomeration_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ExpectationConglomeration_test.cpp 28 Dec 2005 09:23:31 -0000 1.16 +++ ExpectationConglomeration_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationConglomeration.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationConglomeration_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: AnyArgumentsMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AnyArgumentsMatcher_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- AnyArgumentsMatcher_test.cpp 28 Dec 2005 09:23:30 -0000 1.10 +++ AnyArgumentsMatcher_test.cpp 28 Dec 2005 21:29:20 -0000 1.11 @@ -33,7 +33,7 @@ #include <mockpp/matcher/AnyArgumentsMatcher.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class AnyArgumentsMatcher_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ArgumentsMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ArgumentsMatcher_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- ArgumentsMatcher_test.cpp 28 Dec 2005 09:23:30 -0000 1.15 +++ ArgumentsMatcher_test.cpp 28 Dec 2005 21:29:20 -0000 1.16 @@ -33,7 +33,7 @@ #include <mockpp/matcher/ArgumentsMatcher.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/chaining/Invocation.h> Index: TestFailureStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TestFailureStub_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- TestFailureStub_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ TestFailureStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 @@ -31,7 +31,7 @@ #include "SelectFramework.h" -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/stub/TestFailureStub.h> Index: IsSame_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsSame_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- IsSame_test.cpp 28 Dec 2005 09:23:31 -0000 1.13 +++ IsSame_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsSame.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsSame_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: StringEndsWith_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringEndsWith_test.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- StringEndsWith_test.cpp 28 Dec 2005 09:23:31 -0000 1.7 +++ StringEndsWith_test.cpp 28 Dec 2005 21:29:21 -0000 1.8 @@ -33,7 +33,7 @@ #include <mockpp/constraint/StringEndsWith.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class StringEndsWith_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: ExpectationSet_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationSet_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ExpectationSet_test.cpp 28 Dec 2005 09:23:31 -0000 1.18 +++ ExpectationSet_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationSet.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationSet_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: IsGreaterOrEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsGreaterOrEqual_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IsGreaterOrEqual_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ IsGreaterOrEqual_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 @@ -33,7 +33,7 @@ #include <mockpp/constraint/IsGreaterOrEqual.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class IsGreaterOrEqual_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: mockpp_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/mockpp_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- mockpp_test.cpp 28 Dec 2005 09:23:31 -0000 1.17 +++ mockpp_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 @@ -31,7 +31,7 @@ #include "SelectFramework.h" -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> Index: Throwable_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Throwable_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Throwable_test.cpp 28 Dec 2005 09:23:31 -0000 1.18 +++ Throwable_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 @@ -32,7 +32,7 @@ #include "SelectFramework.h" #include <mockpp/Throwable.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/util/AssertMo.h> Index: NoArgumentsMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoArgumentsMatcher_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- NoArgumentsMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.13 +++ NoArgumentsMatcher_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 @@ -35,7 +35,7 @@ #include <mockpp/chaining/Invocation.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class NoArgumentsMatcher_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK Index: AbstractInvocationDispatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractInvocationDispatcher_test.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- AbstractInvocationDispatcher_test.cpp 28 Dec 2005 09:23:30 -0000 1.26 +++ AbstractInvocationDispatcher_test.cpp 28 Dec 2005 21:29:19 -0000 1.27 @@ -35,7 +35,7 @@ #include <mockpp/chaining/AbstractInvocationDispatcher.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> #include <mockpp/Throwable.h> Index: ExpectationCounter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationCounter_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ExpectationCounter_test.cpp 28 Dec 2005 09:23:31 -0000 1.17 +++ ExpectationCounter_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 @@ -33,7 +33,7 @@ #include "SelectFramework.h" #include <mockpp/ExpectationCounter.h> -#include <mockpp/compat/Assert.h> +#include <mockpp/compat/Asserter.h> class ExpectationCounter_test MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK |