mockpp-commits Mailing List for Mock Objects for C++ (Page 9)
Brought to you by:
ewald-arnold
You can subscribe to this list here.
2005 |
Jan
|
Feb
(17) |
Mar
(178) |
Apr
(119) |
May
(60) |
Jun
(3) |
Jul
(60) |
Aug
(16) |
Sep
(55) |
Oct
(156) |
Nov
(136) |
Dec
(255) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(98) |
Feb
(8) |
Mar
(57) |
Apr
(43) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ewald A. <ewa...@us...> - 2006-01-01 11:17:37
|
Update of /cvsroot/mockpp/mockpp/mockpp/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6171/mockpp/framework Modified Files: SelectUnittestFramework.h Log Message: register boost tests Index: SelectUnittestFramework.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/SelectUnittestFramework.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- SelectUnittestFramework.h 1 Jan 2006 10:27:22 -0000 1.7 +++ SelectUnittestFramework.h 1 Jan 2006 11:17:27 -0000 1.8 @@ -30,7 +30,9 @@ #ifndef MOCKPP_SELECTUNITTESTFRAMEWORK_H #define MOCKPP_SELECTUNITTESTFRAMEWORK_H +//================================================= #if defined(MOCKPP_USE_CXXTEST) +//================================================= # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CxxTest::TestSuite @@ -54,14 +56,18 @@ #include <mockpp/framework/CxxTestSupport.h> +//================================================= #elif defined(MOCKPP_USE_CPPUNIT) +//================================================= #define MOCKPP_TEST_DECL /* not static */ # include <cppunit/extensions/HelperMacros.h> # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CppUnit::TestFixture +//================================================= #elif defined(MOCKPP_USE_BOOSTTEST) +//================================================= # define MOCKPP_TEST_DECL static @@ -75,7 +81,9 @@ BOOST_JOIN( test_registrar, __LINE__) \ ( BOOST_TEST_CASE( func_name ) ); \ +//================================================= #else +//================================================= # pragma message ("No unittest framework available at compile time") # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK /**/ |
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27489/mockpp/tests Modified Files: AbstractDynamicChainingMock_test.cpp And_test.cpp ChainableMockMethod_1_test.cpp ChainableMockMethod_2_test.cpp ChainableMockMethod_test.cpp ChainableMockObjectPolymorphism_test.cpp CoreMock_test.cpp Makefile.am MockObject_test.cpp NoException_test.cpp TrackingCounter_test.cpp Verifiable_test.cpp VisitableMockMethod_1_test.cpp VisitableMockMethod_2_test.cpp VisitableMockMethod_test.cpp VisitableMockObject_test.cpp mock_test.cpp mockpp_pti_test.cpp Log Message: Boost.Test basically running Index: VisitableMockMethod_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_2_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- VisitableMockMethod_2_test.cpp 30 Dec 2005 15:31:59 -0000 1.16 +++ VisitableMockMethod_2_test.cpp 1 Jan 2006 10:27:23 -0000 1.17 @@ -94,7 +94,7 @@ , visitablev_mocker(MOCKPP_PCHAR("visitablev2"), this) {} - MOCKPP_TEST_DECL void visitable(const mockpp::ConstraintHolder<unsigned> &p1, + void visitable(const mockpp::ConstraintHolder<unsigned> &p1, const mockpp::ConstraintHolder<unsigned> &p2) { visitable_mocker.forward(p1, p2); @@ -105,13 +105,13 @@ return visitable_mocker.forward(i, j); } - MOCKPP_TEST_DECL void visitablev(const mockpp::ConstraintHolder<unsigned> &p1, + void visitablev(const mockpp::ConstraintHolder<unsigned> &p1, const mockpp::ConstraintHolder<unsigned> &p2) { visitablev_mocker.forward(p1, p2); } - MOCKPP_TEST_DECL void visitablev(unsigned i, unsigned j) + void visitablev(unsigned i, unsigned j) { visitablev_mocker.forward(i, j); } Index: And_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/And_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- And_test.cpp 30 Dec 2005 15:31:58 -0000 1.17 +++ And_test.cpp 1 Jan 2006 10:27:22 -0000 1.18 @@ -71,6 +71,9 @@ #elif defined(MOCKPP_USE_BOOSTTEST) +MOCKPP_BOOST_TEST( And_test::test_invoke); +MOCKPP_BOOST_TEST( And_test::test_describe); + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (And_test); Index: mock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/mock_test.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- mock_test.cpp 30 Dec 2005 15:31:59 -0000 1.33 +++ mock_test.cpp 1 Jan 2006 10:27:23 -0000 1.34 @@ -60,6 +60,11 @@ #elif defined(MOCKPP_USE_BOOSTTEST) +#define BOOST_AUTO_TEST_MAIN +#include <boost/test/auto_unit_test.hpp> +#include <boost/test/unit_test.hpp> +using namespace boost::unit_test_framework; + #elif defined(MOCKPP_USE_CPPUNIT) # include <cppunit/extensions/TestFactoryRegistry.h> @@ -169,6 +174,29 @@ #endif +#if defined(MOCKPP_USE_BOOSTTEST) + +test_suite* +init_unit_test_suite( int argc, char* argv[] ) +{ + std::cout << "starting tests..\n"; + std::cout << " - using Boost.Test framework\n"; +#ifdef MOCKPP_PTI_WEAKNESS + std::cout << " - support pti-weakness enabled\n"; +#else + std::cout << " - support pti-weakness disabled\n"; +#endif + + std::cout << " - size of <char> is " << sizeof(MOCKPP_CHAR('x')) << std::endl; + std::cout << "\n"; + + test_suite* test= BOOST_TEST_SUITE( "const_string test" ); + + return test; +} + +#else + int main(int argc, char **argv) { int ret = 1; @@ -193,8 +221,6 @@ ret = run_cxxtest(argc, argv); -#elif defined(MOCKPP_USE_BOOSTTEST) - #elif defined(MOCKPP_USE_CPPUNIT) std::cout << "Options\n"; @@ -210,3 +236,7 @@ std::cout << "Result: " << ret << std::endl << std::endl; return ret; } + + +#endif // frameworks + Index: NoException_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoException_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- NoException_test.cpp 30 Dec 2005 15:31:59 -0000 1.11 +++ NoException_test.cpp 1 Jan 2006 10:27:23 -0000 1.12 @@ -59,6 +59,9 @@ { public: + virtual ~NoException_test() + {} + #if defined (MOCKPP_USE_CXXTEST) #elif defined(MOCKPP_USE_BOOSTTEST) Index: ChainableMockMethod_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_2_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- ChainableMockMethod_2_test.cpp 30 Dec 2005 15:31:58 -0000 1.15 +++ ChainableMockMethod_2_test.cpp 1 Jan 2006 10:27:22 -0000 1.16 @@ -109,7 +109,7 @@ return chainable_mocker.forward(i, l); } - MOCKPP_TEST_DECL void chainablev(unsigned i, long l) + void chainablev(unsigned i, long l) { chainablev_mocker.forward(i, l); } Index: Verifiable_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Verifiable_test.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- Verifiable_test.cpp 30 Dec 2005 15:31:59 -0000 1.27 +++ Verifiable_test.cpp 1 Jan 2006 10:27:23 -0000 1.28 @@ -142,7 +142,7 @@ } // make public for test purposes - MOCKPP_TEST_DECL void clearVer() + void clearVer() { #ifdef _MSC_VER VerifiableList::clearVerifiables(); @@ -170,7 +170,7 @@ #endif } - MOCKPP_TEST_DECL void addVerifiable(mockpp::Verifiable *vf) + void addVerifiable(mockpp::Verifiable *vf) { #ifdef _MSC_VER VerifiableList::addVerifiable(vf); @@ -179,7 +179,7 @@ #endif } - MOCKPP_TEST_DECL void removeVerifiable(mockpp::Verifiable *vf) + void removeVerifiable(mockpp::Verifiable *vf) { #ifdef _MSC_VER VerifiableList::removeVerifiable(vf); Index: AbstractDynamicChainingMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractDynamicChainingMock_test.cpp,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- AbstractDynamicChainingMock_test.cpp 30 Dec 2005 15:31:58 -0000 1.38 +++ AbstractDynamicChainingMock_test.cpp 1 Jan 2006 10:27:22 -0000 1.39 @@ -126,7 +126,7 @@ return mockInvocation(invocation); } - MOCKPP_TEST_DECL void void_invoke(const I &invocation) + void void_invoke(const I &invocation) { mockInvocation(invocation); } @@ -369,7 +369,7 @@ bool invoked; - MOCKPP_TEST_DECL void invoke( const I &/*invocation*/ ) + void invoke( const I &/*invocation*/ ) { invoked = true; } Index: TrackingCounter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TrackingCounter_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- TrackingCounter_test.cpp 30 Dec 2005 15:31:59 -0000 1.15 +++ TrackingCounter_test.cpp 1 Jan 2006 10:27:23 -0000 1.16 @@ -158,7 +158,7 @@ virtual void reset() {} - MOCKPP_TEST_DECL void clearActual() + void clearActual() {} unsigned getActual() const Index: mockpp_pti_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/mockpp_pti_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- mockpp_pti_test.cpp 30 Dec 2005 15:31:59 -0000 1.13 +++ mockpp_pti_test.cpp 1 Jan 2006 10:27:23 -0000 1.14 @@ -205,7 +205,7 @@ { public: - MOCKPP_TEST_DECL void myDispatch( const Setter1Invocation &invocation ) + void myDispatch( const Setter1Invocation &invocation ) { dispatch(invocation); } @@ -238,7 +238,7 @@ { public: - MOCKPP_TEST_DECL void myDispatch( const Setter1Invocation &invocation ) + void myDispatch( const Setter1Invocation &invocation ) { dispatch(invocation); } @@ -334,7 +334,7 @@ : mockpp::AbstractDynamicChainingMock<void, Setter1Invocation>(invocationDispatcher, name, parent) {} - MOCKPP_TEST_DECL void invoke(const Setter1Invocation &invocation) + void invoke(const Setter1Invocation &invocation) { mockInvocation(invocation); } Index: ChainableMockObjectPolymorphism_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObjectPolymorphism_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- ChainableMockObjectPolymorphism_test.cpp 30 Dec 2005 15:31:58 -0000 1.11 +++ ChainableMockObjectPolymorphism_test.cpp 1 Jan 2006 10:27:22 -0000 1.12 @@ -127,13 +127,13 @@ , parameter3( in_parameter1 ) {} - MOCKPP_TEST_DECL void accept1( Visitor &visitor ) + void accept1( Visitor &visitor ) { // std::cout << "accept1\n"; visitor.visit1( parameter1 ); } - MOCKPP_TEST_DECL void accept3( Visitor &visitor ) + void accept3( Visitor &visitor ) { // std::cout << "accept3\n"; visitor.visit3( parameter1, parameter2, parameter3 ); Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Makefile.am,v retrieving revision 1.98 retrieving revision 1.99 diff -u -d -r1.98 -r1.99 --- Makefile.am 28 Dec 2005 09:23:31 -0000 1.98 +++ Makefile.am 1 Jan 2006 10:27:22 -0000 1.99 @@ -5,8 +5,6 @@ ########################################################################### -AM_LDFLAGS = $(all_libraries) - if WORKING_WIN32 win32_app = mock_test_win32 endif @@ -32,6 +30,8 @@ ########################################################################### +AM_LDFLAGS = $(all_libraries) + AM_CXXFLAGS = -I$(QTDIR)/include -I/usr/X11R6/include ########################################################################### @@ -40,9 +40,6 @@ cxxtest_lib=$(top_builddir)/3party/cxxtest/cxxtest/libmockpp_cxxtest.la endif -mock_test_LDADD = $(top_builddir)/mockpp/libmockpp.la \ - $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) - if WORKING_QT mock_test_qt_LDADD = $(top_builddir)/mockpp/libmockpp.la \ $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) -lqt-mt @@ -58,8 +55,11 @@ $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) -lwindows endif +mock_test_LDADD = $(top_builddir)/mockpp/libmockpp.la \ + $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) $(LIBBOOST) + jmock_test_LDADD = $(top_builddir)/mockpp/libmockpp.la \ - $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) + $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) $(LIBBOOST) readability_test_LDADD = $(top_builddir)/mockpp/libmockpp.la \ $(cxxtest_lib) $(LIBDL) -lstdc++ $(EA_EXTRA_LIB) Index: VisitableMockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_test.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- VisitableMockObject_test.cpp 30 Dec 2005 15:31:59 -0000 1.31 +++ VisitableMockObject_test.cpp 1 Jan 2006 10:27:23 -0000 1.32 @@ -123,6 +123,26 @@ #elif defined(MOCKPP_USE_BOOSTTEST) +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_controller); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_thrower); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_return); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_clear); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_parameter_ex); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_inline_pre_1_2); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_inline_post_1_2); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_method_unused); + +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_add_throw_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_add_throw_val_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_set_throw_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_add_method_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_add_return_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_set_return_after_active); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_return); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_unused_throwable); +MOCKPP_BOOST_TEST(VisitableMockObject_test::fail_unused_value); +MOCKPP_BOOST_TEST(VisitableMockObject_test::test_stub_return_const_ref); + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (VisitableMockObject_test); Index: ChainableMockMethod_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_1_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockMethod_1_test.cpp 30 Dec 2005 15:31:58 -0000 1.16 +++ ChainableMockMethod_1_test.cpp 1 Jan 2006 10:27:22 -0000 1.17 @@ -110,7 +110,7 @@ return chainable_mocker.forward(i); } - MOCKPP_TEST_DECL void chainablev(unsigned i) + void chainablev(unsigned i) { chainablev_mocker.forward(i); } Index: MockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MockObject_test.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- MockObject_test.cpp 30 Dec 2005 15:31:59 -0000 1.23 +++ MockObject_test.cpp 1 Jan 2006 10:27:23 -0000 1.24 @@ -111,7 +111,7 @@ } - MOCKPP_TEST_DECL void execTest() + void execTest() { lev1a.setFailOnVerify(); lev1a.setExpected(12345); @@ -119,7 +119,7 @@ } - MOCKPP_TEST_DECL void execFail() + void execFail() { lev1a.setFailOnVerify(); lev1a.setExpected(12345); Index: VisitableMockMethod_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_1_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- VisitableMockMethod_1_test.cpp 30 Dec 2005 15:31:59 -0000 1.11 +++ VisitableMockMethod_1_test.cpp 1 Jan 2006 10:27:23 -0000 1.12 @@ -94,7 +94,7 @@ , visitablev_mocker(MOCKPP_PCHAR("visitablev2"), this) {} - MOCKPP_TEST_DECL void visitable(const mockpp::ConstraintHolder<unsigned> &p1) + void visitable(const mockpp::ConstraintHolder<unsigned> &p1) { visitable_mocker.forward(p1); } @@ -104,12 +104,12 @@ return visitable_mocker.forward(i); } - MOCKPP_TEST_DECL void visitablev(const mockpp::ConstraintHolder<unsigned> &p1) + void visitablev(const mockpp::ConstraintHolder<unsigned> &p1) { visitablev_mocker.forward(p1); } - MOCKPP_TEST_DECL void visitablev(unsigned i) + void visitablev(unsigned i) { visitablev_mocker.forward(i); } Index: VisitableMockMethod_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- VisitableMockMethod_test.cpp 30 Dec 2005 15:31:59 -0000 1.24 +++ VisitableMockMethod_test.cpp 1 Jan 2006 10:27:23 -0000 1.25 @@ -124,7 +124,7 @@ return visitable_mocker.forward(); } - MOCKPP_TEST_DECL void visitablev() + void visitablev() { visitablev_mocker.forward(); } @@ -181,7 +181,7 @@ {} #if defined(__BORLANDC__) // ==> BCB5.5.1 ?? F1004 Internal compiler error at 0x12548c1 with base 0x1200000 - MOCKPP_TEST_DECL void throwAvailableException() const + void throwAvailableException() const { mockpp::VisitableMockMethodBase::throwAvailableException(); } @@ -267,7 +267,7 @@ {} #if defined(__BORLANDC__) // ==> BCB5.5.1 ?? F1004 Internal compiler error at 0x12548c1 with base 0x1200000 - MOCKPP_TEST_DECL void throwAvailableException() const + void throwAvailableException() const { mockpp::VisitableMockReturningMethodBase<T>::throwAvailableException(); } Index: ChainableMockMethod_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChainableMockMethod_test.cpp 30 Dec 2005 15:31:58 -0000 1.18 +++ ChainableMockMethod_test.cpp 1 Jan 2006 10:27:22 -0000 1.19 @@ -117,7 +117,7 @@ return chainable_mocker.forward(); } - MOCKPP_TEST_DECL void chainablev() + void chainablev() { chainablev_mocker.forward(); } Index: CoreMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CoreMock_test.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- CoreMock_test.cpp 30 Dec 2005 15:31:59 -0000 1.28 +++ CoreMock_test.cpp 1 Jan 2006 10:27:22 -0000 1.29 @@ -208,7 +208,7 @@ bool invoked; - MOCKPP_TEST_DECL void invoke( const I &/*invocation*/ ) + void invoke( const I &/*invocation*/ ) { invoked = true; } |
From: Ewald A. <ewa...@us...> - 2006-01-01 10:27:36
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27489 Modified Files: acinclude.m4 configure.in run-configure-unicode.sh Log Message: Boost.Test basically running Index: run-configure-unicode.sh =================================================================== RCS file: /cvsroot/mockpp/mockpp/run-configure-unicode.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- run-configure-unicode.sh 28 Dec 2005 09:23:30 -0000 1.14 +++ run-configure-unicode.sh 1 Jan 2006 10:27:21 -0000 1.15 @@ -14,4 +14,5 @@ OPTS="$OPTS --enable-builtin-stl" # --disable-exceptions --disable-rtti OPTS="$OPTS --enable-debug=full" #OPTS="$OPTS --disable-builtin-cxxtest --enable-cppunit" +OPTS="$OPTS --disable-builtin-cxxtest --enable-boosttest" CFLAGS="$MYFLAGS" CXXFLAGS="$MYFLAGS" CXX=$MYCC CC=$MYCC ${0%/*}/configure --enable-unicode $OPTS --prefix=/tmp/mockpp-install Index: acinclude.m4 =================================================================== RCS file: /cvsroot/mockpp/mockpp/acinclude.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- acinclude.m4 27 Nov 2005 17:27:56 -0000 1.2 +++ acinclude.m4 1 Jan 2006 10:27:20 -0000 1.3 @@ -1,2 +1,3 @@ sinclude(config/ac_cxx_rtti.m4) sinclude(config/ac_cxx_except.m4) +sinclude(config/ac_cxx_boosttest.m4) Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- configure.in 30 Dec 2005 12:43:34 -0000 1.108 +++ configure.in 1 Jan 2006 10:27:20 -0000 1.109 @@ -19,9 +19,9 @@ MOCKPP_MINOR_VERSION=11 MOCKPP_PATCH_VERSION=1 -MOCKPP_MICRO_VERSION=35 -MOCKPP_INTERFACE_AGE=1 -MOCKPP_BINARY_AGE=1 +MOCKPP_MICRO_VERSION=36 +MOCKPP_INTERFACE_AGE=2 +MOCKPP_BINARY_AGE=2 MOCKPP_VERSION=$MOCKPP_MAJOR_VERSION.$MOCKPP_MINOR_VERSION.$MOCKPP_PATCH_VERSION @@ -403,6 +403,7 @@ EA_CHECK_WCSCMP EA_CHECK_STD_WCSCMP EA_CHECK_LIBCPPUNIT +EA_CHECK_BOOSTTEST # TODO AM_CONDITIONAL(WORKING_QT, test x = y) |
From: Ewald A. <ewa...@us...> - 2006-01-01 10:27:36
|
Update of /cvsroot/mockpp/mockpp/mockpp/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27489/mockpp/framework Modified Files: SelectUnittestFramework.h Log Message: Boost.Test basically running Index: SelectUnittestFramework.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/SelectUnittestFramework.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- SelectUnittestFramework.h 30 Dec 2005 15:40:14 -0000 1.6 +++ SelectUnittestFramework.h 1 Jan 2006 10:27:22 -0000 1.7 @@ -63,10 +63,17 @@ #elif defined(MOCKPP_USE_BOOSTTEST) -#define MOCKPP_TEST_DECL static +# define MOCKPP_TEST_DECL static -# include -# define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public +# include <boost/test/auto_unit_test.hpp> + +# define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK /* : public boost::test_case */ + +// this is a part of boost macro BOOST_AUTO_UNIT_TEST +# define MOCKPP_BOOST_TEST(func_name) \ +static boost::unit_test_framework::detail::auto_unit_test_registrar \ + BOOST_JOIN( test_registrar, __LINE__) \ + ( BOOST_TEST_CASE( func_name ) ); \ #else |
From: Ewald A. <ewa...@us...> - 2006-01-01 10:27:36
|
Update of /cvsroot/mockpp/mockpp/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27489/config Added Files: ac_cxx_boosttest.m4 Log Message: Boost.Test basically running --- NEW FILE: ac_cxx_boosttest.m4 --- AC_DEFUN([EA_CHECK_BOOSTTEST], [ AC_ARG_ENABLE(boostdir, [ --boost-dir directory where the root of the Boost headers is located], [boostdir=NO]) boost_inc_dirs="/usr/include/boost-* /usr/local/include/boost-*" if test x$boostdir != xNO; then boost_inc_dirs="$boost_inc_dirs $boostdir" fi boost_lib_dirs="/usr/lib /usr/local/lib" if test "ac_cv_header_boost_TestSuite_h" != "yes"; then echo "checking for boost/any.hpp at $boost_inc_dirs" EA_FIND_FILE(boost/any.hpp, $boost_inc_dirs, boost_inc, dummy) if test x$boost_inc != xNO; then echo "*******************************************************" echo "found boost at $boost_inc" echo "*******************************************************" EA_EXTRA_INC="$EA_EXTRA_INC -I$boost_inc" AC_DEFINE(HAVE_BOOSTTEST, 1, [Define if you have boost installed.]) else echo "*******************************************************" echo "*** boost includes not found." echo "*******************************************************" AH_TEMPLATE(HAVE_BOOSTTEST, [Define if you have boost installed.]) fi fi echo "checking for libboost_unit_test_framework-*.so at $boost_lib_dirs" EA_FIND_FILE(libboost_unit_test_framework-*.so, $boost_lib_dirs, boost_lib, boost_name) if test x$boost_lib != xNO; then echo "*******************************************************" echo "found boost test library as $boost_name at $boost_lib" echo "*******************************************************" x=${boost_name#lib} echo "x $x" LIBBOOST="-l${x%.so}" echo "LIBBOOST $LIBBOOST" EA_EXTRA_LIB="$EA_EXTRA_LIB -L$boost_lib" else echo "*******************************************************" echo "*** boost unit test framework not found." echo "*******************************************************" fi AC_ARG_ENABLE(boosttest, [ --enable-boosttest use Boost.Test as framework, unless cxxtest selected (no) ], [enable_boosttest=yes]) if test x$boosttest_inc != xNO; then if test x$enable_boosttest = xyes; then echo "*******************************************************" echo "** using boosttest framework" echo "*******************************************************" AC_DEFINE(MOCKPP_USE_BOOSTTEST, 1, [Define to use Boost.Test as framework.]) else echo "*******************************************************" echo "** NOT using boosttest framework" echo "*******************************************************" AH_TEMPLATE(MOCKPP_USE_BOOSTTEST, [Define to use Boost.Test as framework.]) fi fi AM_CONDITIONAL(BOOSTTEST, test x$enable_boosttest = xyes) AC_SUBST(LIBBOOST) ]) |
From: Ewald A. <ewa...@us...> - 2006-01-01 10:27:35
|
Update of /cvsroot/mockpp/mockpp/mockpp/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27489/mockpp/config Modified Files: gen-config-common.sh Log Message: Boost.Test basically running Index: gen-config-common.sh =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/config/gen-config-common.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- gen-config-common.sh 29 Dec 2005 12:29:51 -0000 1.4 +++ gen-config-common.sh 1 Jan 2006 10:27:22 -0000 1.5 @@ -12,7 +12,10 @@ /* Name of package */ #define MOCKPP_PACKAGE "$3" -/* Define if you have CppUnit installed. */ +/* Define to use Boost.Test as framework. */ +#undef MOCKPP_USE_BOOSTTEST + +/* Define to use CppUnit as framework. */ #undef MOCKPP_USE_CPPUNIT /* Define to 1 if you have the <cppunit/Message.h> header file. */ |
From: Ewald A. <ewa...@us...> - 2005-12-30 15:40:21
|
Update of /cvsroot/mockpp/mockpp/mockpp/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11062/mockpp/framework Modified Files: SelectUnittestFramework.h Log Message: prepare for Boost.Test Index: SelectUnittestFramework.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/SelectUnittestFramework.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- SelectUnittestFramework.h 29 Dec 2005 19:29:51 -0000 1.5 +++ SelectUnittestFramework.h 30 Dec 2005 15:40:14 -0000 1.6 @@ -34,6 +34,8 @@ # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CxxTest::TestSuite +#define MOCKPP_TEST_DECL /* static or not */ + #define CXXTEST_HAVE_STD #ifndef CXXTEST_RUNNING #define CXXTEST_RUNNING @@ -54,9 +56,18 @@ #elif defined(MOCKPP_USE_CPPUNIT) +#define MOCKPP_TEST_DECL /* not static */ + # include <cppunit/extensions/HelperMacros.h> # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CppUnit::TestFixture +#elif defined(MOCKPP_USE_BOOSTTEST) + +#define MOCKPP_TEST_DECL static + +# include +# define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public + #else # pragma message ("No unittest framework available at compile time") |
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9950/mockpp/tests Modified Files: AbstractDynamicChainingMock_test.cpp AbstractInvocationDispatcher_test.cpp And_test.cpp AnyArgumentsMatcher_test.cpp ArgumentsMatchBuilder_test.cpp ArgumentsMatcher_test.cpp AssertMo_test.cpp Assert_test.cpp ChainableMockMethod_1_test.cpp ChainableMockMethod_2_test.cpp ChainableMockMethod_test.cpp ChainableMockObjectPolymorphism_test.cpp ChainableMockObject_1_test.cpp ChainableMockObject_1_void_test.cpp ChainableMockObject_2_test.cpp ChainableMockObject_2_void_test.cpp ChainableMockObject_3_test.cpp ChainableMockObject_3_void_test.cpp ChainableMockObject_4_test.cpp ChainableMockObject_4_void_test.cpp ChainableMockObject_5_test.cpp ChainableMockObject_5_void_test.cpp ChainableMockObject_test.cpp ChainableMockObject_void_test.cpp ChainingMockBuilder_test.cpp ChainingMockObjectSupport_test.cpp ConstraintList_test.cpp ConstraintSet_test.cpp CoreMock_test.cpp CustomStub_test.cpp DefaultResultStub_test.cpp DynamicChainingMockError_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 FIFOInvocationDispatcher_test.cpp Formatter_test.cpp InvocationMockerBuilder_test.cpp InvocationMocker_test.cpp Invocation_test.cpp InvokeAtLeastMatcher_test.cpp InvokeAtLeastOnceMatcher_test.cpp InvokeAtMostMatcher_test.cpp InvokeCountMatcher_test.cpp InvokeOnceMatcher_test.cpp InvokedAfterMatcher_test.cpp InvokedBeforeMatcher_test.cpp InvokedRecorder_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 LIFOInvocationDispatcher_test.cpp MatchBuilder_test.cpp MixedMockObject_5_test.cpp MockObject_test.cpp NoArgumentsMatcher_test.cpp NoException_test.cpp Or_test.cpp OutBound_test.cpp ResponseVector_test.cpp ReturnObjectList_test.cpp ReturnStub_test.cpp StringContains_test.cpp StringEndsWith_test.cpp StringStartsWith_test.cpp StubBuilder_test.cpp StubSequence_test.cpp TestFailureMatcher_test.cpp TestFailureStub_test.cpp ThrowStub_test.cpp ThrowableList_test.cpp Throwable_test.cpp TimeServer_test.cpp TrackingCounter_test.cpp TypelessStubSequence_test.cpp UnlimitedMatcher_test.cpp Verifiable_test.cpp VerifyingTestCaller_test.cpp VerifyingTestCase_test.cpp VisitableMockMethod_1_test.cpp VisitableMockMethod_2_test.cpp VisitableMockMethod_test.cpp VisitableMockObject_1_test.cpp VisitableMockObject_1_void_test.cpp VisitableMockObject_2_test.cpp VisitableMockObject_2_void_test.cpp VisitableMockObject_3_test.cpp VisitableMockObject_3_void_test.cpp VisitableMockObject_4_test.cpp VisitableMockObject_4_void_test.cpp VisitableMockObject_5_test.cpp VisitableMockObject_5_void_test.cpp VisitableMockObject_template_test.cpp VisitableMockObject_test.cpp VisitableMockObject_void_test.cpp VoidStub_test.cpp mock_test.cpp mockpp_pti_test.cpp mockpp_test.cpp Log Message: prepare for Boost.Test Index: Or_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Or_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- Or_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 +++ Or_test.cpp 30 Dec 2005 15:31:59 -0000 1.17 @@ -45,6 +45,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( Or_test ); @@ -58,8 +60,8 @@ public: - void test_invoke(); - void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); }; @@ -69,6 +71,8 @@ MOCKPP_CXXTEST(Or_test, test_describe); MOCKPP_CXXTEST(Or_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (Or_test); Index: TestFailureMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TestFailureMatcher_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- TestFailureMatcher_test.cpp 29 Dec 2005 19:29:52 -0000 1.14 +++ TestFailureMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.15 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( TestFailureMatcher_test ); @@ -53,7 +55,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -62,6 +64,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( TestFailureMatcher_test ); MOCKPP_CXXTEST(TestFailureMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (TestFailureMatcher_test); Index: DynamicChainingMockError_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/DynamicChainingMockError_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- DynamicChainingMockError_test.cpp 29 Dec 2005 19:29:51 -0000 1.19 +++ DynamicChainingMockError_test.cpp 30 Dec 2005 15:31:59 -0000 1.20 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( DynamicChainingMockError_test ); @@ -61,7 +63,7 @@ public: - void test_describe(); + MOCKPP_TEST_DECL void test_describe(); }; @@ -70,6 +72,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( DynamicChainingMockError_test ); MOCKPP_CXXTEST(DynamicChainingMockError_test, test_describe); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (DynamicChainingMockError_test); Index: AbstractDynamicChainingMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractDynamicChainingMock_test.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- AbstractDynamicChainingMock_test.cpp 29 Dec 2005 19:29:51 -0000 1.37 +++ AbstractDynamicChainingMock_test.cpp 30 Dec 2005 15:31:58 -0000 1.38 @@ -61,6 +61,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( AbstractDynamicChainingMock_test ); @@ -78,12 +80,12 @@ public: - void test_void_invocation(); - void test_invocation(); - void test_describer(); - void test_describe(); - void test_void_describe(); - void test_verify(); + MOCKPP_TEST_DECL void test_void_invocation(); + MOCKPP_TEST_DECL void test_invocation(); + MOCKPP_TEST_DECL void test_describer(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_void_describe(); + MOCKPP_TEST_DECL void test_verify(); }; @@ -97,6 +99,8 @@ MOCKPP_CXXTEST(AbstractDynamicChainingMock_test, test_void_describe ); MOCKPP_CXXTEST(AbstractDynamicChainingMock_test, test_verify ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION ( AbstractDynamicChainingMock_test ); @@ -122,7 +126,7 @@ return mockInvocation(invocation); } - void void_invoke(const I &invocation) + MOCKPP_TEST_DECL void void_invoke(const I &invocation) { mockInvocation(invocation); } @@ -365,7 +369,7 @@ bool invoked; - void invoke( const I &/*invocation*/ ) + MOCKPP_TEST_DECL void invoke( const I &/*invocation*/ ) { invoked = true; } Index: IsInstanceOf_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsInstanceOf_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- IsInstanceOf_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 +++ IsInstanceOf_test.cpp 30 Dec 2005 15:31:59 -0000 1.21 @@ -43,6 +43,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( IsInstanceOf_test ); @@ -56,8 +58,8 @@ public: - void test_describe(); - void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -67,6 +69,8 @@ MOCKPP_CXXTEST(IsInstanceOf_test, test_describe); MOCKPP_CXXTEST(IsInstanceOf_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (IsInstanceOf_test); Index: ExpectationList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationList_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- ExpectationList_test.cpp 29 Dec 2005 19:29:51 -0000 1.22 +++ ExpectationList_test.cpp 30 Dec 2005 15:31:59 -0000 1.23 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ExpectationList_test ); @@ -71,27 +73,27 @@ #endif public: - void test_expectNothing(); - void test_expectNothing_revoked(); - void fail_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing_revoked(); + MOCKPP_TEST_DECL void fail_expectNothing(); - void test_expectActualImmediate(); - void fail_expectActualImmediate(); + MOCKPP_TEST_DECL void test_expectActualImmediate(); + MOCKPP_TEST_DECL void fail_expectActualImmediate(); - void test_expectActualVerify(); - void fail_expectActualVerify(); + MOCKPP_TEST_DECL void test_expectActualVerify(); + MOCKPP_TEST_DECL void fail_expectActualVerify(); - void test_clear(); - void fail_many(); - void test_name(); - void fail_clearActual(); - void test_hasExpectations(); - void test_ifNoExpected(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void fail_many(); + MOCKPP_TEST_DECL void test_name(); + MOCKPP_TEST_DECL void fail_clearActual(); + MOCKPP_TEST_DECL void test_hasExpectations(); + MOCKPP_TEST_DECL void test_ifNoExpected(); - void test_chain(); - void test_balance(); - void test_many(); - void fail_ifNoActual(); + MOCKPP_TEST_DECL void test_chain(); + MOCKPP_TEST_DECL void test_balance(); + MOCKPP_TEST_DECL void test_many(); + MOCKPP_TEST_DECL void fail_ifNoActual(); }; #if defined (MOCKPP_USE_CXXTEST) @@ -119,6 +121,8 @@ MOCKPP_CXXTEST(ExpectationList_test, fail_ifNoActual); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ExpectationList_test); Index: IsLessThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessThan_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- IsLessThan_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 +++ IsLessThan_test.cpp 30 Dec 2005 15:31:59 -0000 1.13 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( IsLessThan_test ); @@ -55,8 +57,8 @@ public: - void test_invoke(); - void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(IsLessThan_test, test_describe); MOCKPP_CXXTEST(IsLessThan_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (IsLessThan_test); Index: ExpectationMap_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationMap_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- ExpectationMap_test.cpp 29 Dec 2005 19:29:51 -0000 1.22 +++ ExpectationMap_test.cpp 30 Dec 2005 15:31:59 -0000 1.23 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ExpectationMap_test ); @@ -74,30 +76,30 @@ #endif public: - void test_expectNothing_revoked(); - void test_expectNothing(); - void fail_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing_revoked(); + MOCKPP_TEST_DECL void test_expectNothing(); + MOCKPP_TEST_DECL void fail_expectNothing(); - void test_expectActualImmediate(); - void fail_expectActualImmediate(); + MOCKPP_TEST_DECL void test_expectActualImmediate(); + MOCKPP_TEST_DECL void fail_expectActualImmediate(); - void test_expectActualVerify(); - void fail_expectActualVerify(); + MOCKPP_TEST_DECL void test_expectActualVerify(); + MOCKPP_TEST_DECL void fail_expectActualVerify(); - void test_chain(); - void fail_many(); - void fail_clearActual(); - void test_name(); - void test_missing(); - void test_get(); - void test_pair_get(); - void test_pair_getmany(); - void test_clear(); - void test_hasExpectations(); - void test_ifNoExpected(); + MOCKPP_TEST_DECL void test_chain(); + MOCKPP_TEST_DECL void fail_many(); + MOCKPP_TEST_DECL void fail_clearActual(); + MOCKPP_TEST_DECL void test_name(); + MOCKPP_TEST_DECL void test_missing(); + MOCKPP_TEST_DECL void test_get(); + MOCKPP_TEST_DECL void test_pair_get(); + MOCKPP_TEST_DECL void test_pair_getmany(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_hasExpectations(); + MOCKPP_TEST_DECL void test_ifNoExpected(); - void test_many(); - void fail_ifNoActual(); + MOCKPP_TEST_DECL void test_many(); + MOCKPP_TEST_DECL void fail_ifNoActual(); }; #if defined (MOCKPP_USE_CXXTEST) @@ -128,6 +130,8 @@ MOCKPP_CXXTEST(ExpectationMap_test, fail_ifNoActual); MOCKPP_CXXTEST(ExpectationMap_test, fail_clearActual); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ExpectationMap_test); Index: CustomStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CustomStub_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- CustomStub_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 +++ CustomStub_test.cpp 30 Dec 2005 15:31:59 -0000 1.17 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( CustomStub_test ); @@ -54,7 +56,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -63,6 +65,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( CustomStub_test ); MOCKPP_CXXTEST(CustomStub_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (CustomStub_test); Index: VisitableMockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_test.cpp,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- VisitableMockObject_test.cpp 29 Dec 2005 19:29:52 -0000 1.30 +++ VisitableMockObject_test.cpp 30 Dec 2005 15:31:59 -0000 1.31 @@ -43,6 +43,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( VisitableMockObject_test ); @@ -73,25 +75,25 @@ public: - void test_controller(); - void test_thrower(); - void test_return(); - void test_clear(); - void test_parameter_ex(); - void test_inline_pre_1_2(); - void test_inline_post_1_2(); - void test_method_unused(); + MOCKPP_TEST_DECL void test_controller(); + MOCKPP_TEST_DECL void test_thrower(); + MOCKPP_TEST_DECL void test_return(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_parameter_ex(); + MOCKPP_TEST_DECL void test_inline_pre_1_2(); + MOCKPP_TEST_DECL void test_inline_post_1_2(); + MOCKPP_TEST_DECL void test_method_unused(); - void fail_unused_value(); - void fail_unused_throwable(); - void fail_return(); - void fail_add_method_after_active(); - void fail_add_throw_val_after_active(); - void fail_add_throw_after_active(); - void fail_set_throw_after_active(); - void fail_add_return_after_active(); - void fail_set_return_after_active(); - void test_stub_return_const_ref(); + MOCKPP_TEST_DECL void fail_unused_value(); + MOCKPP_TEST_DECL void fail_unused_throwable(); + MOCKPP_TEST_DECL void fail_return(); + MOCKPP_TEST_DECL void fail_add_method_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_val_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_after_active(); + MOCKPP_TEST_DECL void fail_set_throw_after_active(); + MOCKPP_TEST_DECL void fail_add_return_after_active(); + MOCKPP_TEST_DECL void fail_set_return_after_active(); + MOCKPP_TEST_DECL void test_stub_return_const_ref(); }; @@ -119,6 +121,8 @@ MOCKPP_CXXTEST(VisitableMockObject_test, fail_unused_value); MOCKPP_CXXTEST(VisitableMockObject_test, test_stub_return_const_ref); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (VisitableMockObject_test); Index: Assert_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Assert_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- Assert_test.cpp 29 Dec 2005 19:29:51 -0000 1.24 +++ Assert_test.cpp 30 Dec 2005 15:31:58 -0000 1.25 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( Assert_test ); @@ -72,27 +74,27 @@ #endif public: - void fail_fail(); - void fail_failmsg(); + MOCKPP_TEST_DECL void fail_fail(); + MOCKPP_TEST_DECL void fail_failmsg(); - void test_FalseTrue(); - void test_boundary(); + MOCKPP_TEST_DECL void test_FalseTrue(); + MOCKPP_TEST_DECL void test_boundary(); - void test_equalsPChar(); - void test_equalsAString(); + MOCKPP_TEST_DECL void test_equalsPChar(); + MOCKPP_TEST_DECL void test_equalsAString(); #ifdef MOCKPP_UNICODE - void test_equalsPWChar(); - void test_equalsWString(); + MOCKPP_TEST_DECL void test_equalsPWChar(); + MOCKPP_TEST_DECL void test_equalsWString(); #endif - void test_equalsDouble(); - void test_equalsFloat(); - void test_equalsLong(); - void test_equalsBool(); - void test_equalsChar(); - void test_equalsInt(); - void test_equalsShort(); - void test_macros(); + MOCKPP_TEST_DECL void test_equalsDouble(); + MOCKPP_TEST_DECL void test_equalsFloat(); + MOCKPP_TEST_DECL void test_equalsLong(); + MOCKPP_TEST_DECL void test_equalsBool(); + MOCKPP_TEST_DECL void test_equalsChar(); + MOCKPP_TEST_DECL void test_equalsInt(); + MOCKPP_TEST_DECL void test_equalsShort(); + MOCKPP_TEST_DECL void test_macros(); }; @@ -123,6 +125,8 @@ MOCKPP_CXXTEST(Assert_test, fail_fail); MOCKPP_CXXTEST(Assert_test, fail_failmsg); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (Assert_test); Index: IsLessOrEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessOrEqual_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- IsLessOrEqual_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 +++ IsLessOrEqual_test.cpp 30 Dec 2005 15:31:59 -0000 1.13 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( IsLessOrEqual_test ); @@ -55,8 +57,8 @@ public: - void test_invoke(); - void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(IsLessOrEqual_test, test_describe); MOCKPP_CXXTEST(IsLessOrEqual_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (IsLessOrEqual_test); Index: MixedMockObject_5_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MixedMockObject_5_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- MixedMockObject_5_test.cpp 29 Dec 2005 19:29:51 -0000 1.11 +++ MixedMockObject_5_test.cpp 30 Dec 2005 15:31:59 -0000 1.12 @@ -56,6 +56,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( MixedMockObject_5_test ); @@ -70,9 +72,9 @@ public: - void test_controller(); - void test_chainer(); - void test_return(); + MOCKPP_TEST_DECL void test_controller(); + MOCKPP_TEST_DECL void test_chainer(); + MOCKPP_TEST_DECL void test_return(); }; @@ -83,6 +85,8 @@ MOCKPP_CXXTEST(MixedMockObject_5_test, test_chainer); MOCKPP_CXXTEST(MixedMockObject_5_test, test_return); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (MixedMockObject_5_test); Index: ChainableMockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_test.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- ChainableMockObject_test.cpp 29 Dec 2005 19:29:51 -0000 1.29 +++ ChainableMockObject_test.cpp 30 Dec 2005 15:31:58 -0000 1.30 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_test ); @@ -72,18 +74,18 @@ public: - void test_after_1(); - void test_after_2(); - void test_bad_after(); - void test_before_1(); - void test_before_2(); - void test_bad_before(); - void test_register(); - void test_pending(); - void test_expect_return(); - void test_expect_throw(); - void test_stub_return(); - void test_stub_return_const_ref(); + MOCKPP_TEST_DECL void test_after_1(); + MOCKPP_TEST_DECL void test_after_2(); + MOCKPP_TEST_DECL void test_bad_after(); + MOCKPP_TEST_DECL void test_before_1(); + MOCKPP_TEST_DECL void test_before_2(); + MOCKPP_TEST_DECL void test_bad_before(); + MOCKPP_TEST_DECL void test_register(); + MOCKPP_TEST_DECL void test_pending(); + MOCKPP_TEST_DECL void test_expect_return(); + MOCKPP_TEST_DECL void test_expect_throw(); + MOCKPP_TEST_DECL void test_stub_return(); + MOCKPP_TEST_DECL void test_stub_return_const_ref(); }; @@ -103,6 +105,8 @@ MOCKPP_CXXTEST(ChainableMockObject_test, test_stub_return); MOCKPP_CXXTEST(ChainableMockObject_test, test_stub_return_const_ref); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_test); Index: Invocation_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Invocation_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- Invocation_test.cpp 29 Dec 2005 19:29:51 -0000 1.25 +++ Invocation_test.cpp 30 Dec 2005 15:31:59 -0000 1.26 @@ -44,6 +44,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( Invocation_test ); @@ -67,18 +69,18 @@ public: - void test_equals0(); - void test_equals1(); - void test_equals2(); - void test_equals3(); - void test_equals4(); - void test_equals5(); - void test_get1(); - void test_get2(); - void test_get3(); - void test_get4(); - void test_get5(); - void test_invoked(); + MOCKPP_TEST_DECL void test_equals0(); + MOCKPP_TEST_DECL void test_equals1(); + MOCKPP_TEST_DECL void test_equals2(); + MOCKPP_TEST_DECL void test_equals3(); + MOCKPP_TEST_DECL void test_equals4(); + MOCKPP_TEST_DECL void test_equals5(); + MOCKPP_TEST_DECL void test_get1(); + MOCKPP_TEST_DECL void test_get2(); + MOCKPP_TEST_DECL void test_get3(); + MOCKPP_TEST_DECL void test_get4(); + MOCKPP_TEST_DECL void test_get5(); + MOCKPP_TEST_DECL void test_invoked(); }; @@ -99,6 +101,8 @@ MOCKPP_CXXTEST(Invocation_test, test_get5); MOCKPP_CXXTEST(Invocation_test, test_invoked); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (Invocation_test); Index: IsGreaterThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsGreaterThan_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- IsGreaterThan_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 +++ IsGreaterThan_test.cpp 30 Dec 2005 15:31:59 -0000 1.13 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( IsGreaterThan_test ); @@ -55,8 +57,8 @@ public: - void test_describe(); - void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(IsGreaterThan_test, test_describe); MOCKPP_CXXTEST(IsGreaterThan_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (IsGreaterThan_test); Index: NoException_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoException_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- NoException_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 +++ NoException_test.cpp 30 Dec 2005 15:31:59 -0000 1.11 @@ -61,6 +61,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( NoException_test ); @@ -73,7 +75,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); virtual void setUp(); virtual void tearDown(); @@ -85,6 +87,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( NoException_test ); MOCKPP_CXXTEST(NoException_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (NoException_test); Index: ChainableMockObject_4_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_4_void_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChainableMockObject_4_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 +++ ChainableMockObject_4_void_test.cpp 30 Dec 2005 15:31:58 -0000 1.18 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_4_void_test ); @@ -62,8 +64,8 @@ public: - void test_outbound(); - void test_parameter_4(); + MOCKPP_TEST_DECL void test_outbound(); + MOCKPP_TEST_DECL void test_parameter_4(); }; @@ -73,6 +75,8 @@ MOCKPP_CXXTEST(ChainableMockObject_4_void_test, test_outbound); MOCKPP_CXXTEST(ChainableMockObject_4_void_test, test_parameter_4 ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_4_void_test); Index: InvocationMockerBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvocationMockerBuilder_test.cpp,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- InvocationMockerBuilder_test.cpp 29 Dec 2005 19:29:51 -0000 1.34 +++ InvocationMockerBuilder_test.cpp 30 Dec 2005 15:31:59 -0000 1.35 @@ -69,6 +69,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( InvocationMockerBuilder_test ); @@ -84,10 +86,10 @@ public: - void test_instance0(); - void test_instance5(); - void test_instancev0(); - void test_instancev5(); + MOCKPP_TEST_DECL void test_instance0(); + MOCKPP_TEST_DECL void test_instance5(); + MOCKPP_TEST_DECL void test_instancev0(); + MOCKPP_TEST_DECL void test_instancev5(); }; @@ -99,6 +101,8 @@ MOCKPP_CXXTEST(InvocationMockerBuilder_test, test_instancev0 ); MOCKPP_CXXTEST(InvocationMockerBuilder_test, test_instancev5 ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION ( InvocationMockerBuilder_test ); Index: StringContains_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringContains_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- StringContains_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 +++ StringContains_test.cpp 30 Dec 2005 15:31:59 -0000 1.17 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( StringContains_test ); @@ -55,8 +57,8 @@ public: - void test_invoke(); - void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(StringContains_test, test_describe); MOCKPP_CXXTEST(StringContains_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (StringContains_test); Index: InvokeAtLeastOnceMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeAtLeastOnceMatcher_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- InvokeAtLeastOnceMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 +++ InvokeAtLeastOnceMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.14 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( InvokeAtLeastOnceMatcher_test ); @@ -52,7 +54,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -61,6 +63,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( InvokeAtLeastOnceMatcher_test ); MOCKPP_CXXTEST(InvokeAtLeastOnceMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (InvokeAtLeastOnceMatcher_test); Index: ExpectationSet_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationSet_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ExpectationSet_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 +++ ExpectationSet_test.cpp 30 Dec 2005 15:31:59 -0000 1.21 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ExpectationSet_test ); @@ -70,26 +72,26 @@ #endif public: - void test_expectNothing(); - void test_expectNothing_revoked(); - void fail_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing_revoked(); + MOCKPP_TEST_DECL void fail_expectNothing(); - void test_expectActualImmediate(); - void fail_expectActualImmediate(); + MOCKPP_TEST_DECL void test_expectActualImmediate(); + MOCKPP_TEST_DECL void fail_expectActualImmediate(); - void test_expectActualVerify(); - void fail_expectActualVerify(); + MOCKPP_TEST_DECL void test_expectActualVerify(); + MOCKPP_TEST_DECL void fail_expectActualVerify(); - void fail_many(); - void test_name(); - void test_clear(); - void fail_clearActual(); - void test_hasExpectations(); - void test_ifNoExpected(); + MOCKPP_TEST_DECL void fail_many(); + MOCKPP_TEST_DECL void test_name(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void fail_clearActual(); + MOCKPP_TEST_DECL void test_hasExpectations(); + MOCKPP_TEST_DECL void test_ifNoExpected(); - void test_chain(); - void test_many(); - void fail_ifNoActual(); + MOCKPP_TEST_DECL void test_chain(); + MOCKPP_TEST_DECL void test_many(); + MOCKPP_TEST_DECL void fail_ifNoActual(); }; #if defined (MOCKPP_USE_CXXTEST) @@ -116,6 +118,8 @@ MOCKPP_CXXTEST(ExpectationSet_test, fail_ifNoActual); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ExpectationSet_test); Index: ChainableMockObject_1_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_1_void_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ChainableMockObject_1_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 +++ ChainableMockObject_1_void_test.cpp 30 Dec 2005 15:31:58 -0000 1.21 @@ -54,6 +54,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_1_void_test ); @@ -67,8 +69,8 @@ public: - void test_outbound(); - void test_parameter_1(); + MOCKPP_TEST_DECL void test_outbound(); + MOCKPP_TEST_DECL void test_parameter_1(); }; @@ -79,6 +81,8 @@ MOCKPP_CXXTEST(ChainableMockObject_1_void_test, test_outbound); MOCKPP_CXXTEST(ChainableMockObject_1_void_test, test_parameter_1 ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_1_void_test); Index: ChainableMockMethod_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_2_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ChainableMockMethod_2_test.cpp 29 Dec 2005 19:29:51 -0000 1.14 +++ ChainableMockMethod_2_test.cpp 30 Dec 2005 15:31:58 -0000 1.15 @@ -58,6 +58,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockMethod_2_test ); @@ -71,8 +73,8 @@ public: - void test_parameter_2(); - void test_parameter_2v(); + MOCKPP_TEST_DECL void test_parameter_2(); + MOCKPP_TEST_DECL void test_parameter_2v(); }; @@ -82,6 +84,8 @@ MOCKPP_CXXTEST(ChainableMockMethod_2_test, test_parameter_2 ); MOCKPP_CXXTEST(ChainableMockMethod_2_test, test_parameter_2v ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockMethod_2_test); @@ -105,7 +109,7 @@ return chainable_mocker.forward(i, l); } - void chainablev(unsigned i, long l) + MOCKPP_TEST_DECL void chainablev(unsigned i, long l) { chainablev_mocker.forward(i, l); } Index: InvokedAfterMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokedAfterMatcher_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- InvokedAfterMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 +++ InvokedAfterMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.14 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( InvokedAfterMatcher_test ); @@ -52,7 +54,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -61,6 +63,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( InvokedAfterMatcher_test ); MOCKPP_CXXTEST(InvokedAfterMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (InvokedAfterMatcher_test); Index: InvokeOnceMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeOnceMatcher_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- InvokeOnceMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 +++ InvokeOnceMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.14 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( InvokeOnceMatcher_test ); @@ -52,7 +54,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -61,6 +63,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( InvokeOnceMatcher_test ); MOCKPP_CXXTEST(InvokeOnceMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (InvokeOnceMatcher_test); Index: ChainableMockObject_3_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_3_void_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChainableMockObject_3_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 +++ ChainableMockObject_3_void_test.cpp 30 Dec 2005 15:31:58 -0000 1.18 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_3_void_test ); @@ -62,8 +64,8 @@ public: - void test_outbound(); - void test_parameter_3(); + MOCKPP_TEST_DECL void test_outbound(); + MOCKPP_TEST_DECL void test_parameter_3(); }; @@ -73,6 +75,8 @@ MOCKPP_CXXTEST(ChainableMockObject_3_void_test, test_outbound); MOCKPP_CXXTEST(ChainableMockObject_3_void_test, test_parameter_3 ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_3_void_test); Index: VoidStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VoidStub_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- VoidStub_test.cpp 29 Dec 2005 19:29:52 -0000 1.16 +++ VoidStub_test.cpp 30 Dec 2005 15:31:59 -0000 1.17 @@ -1,5 +1,5 @@ /*************************************************************************** - VoidStub_test.cpp - unit tests for VoidStub class + MOCKPP_TEST_DECL voidStub_test.cpp - unit tests for VoidStub class ------------------- begin : Wed 25 Aug 2004 copyright : (C) 2002-2006 by Ewald Arnold @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( VoidStub_test ); @@ -55,8 +57,8 @@ public: - void test_describe(); - void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(VoidStub_test, test_describe); MOCKPP_CXXTEST(VoidStub_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (VoidStub_test); Index: ExpectationCounter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationCounter_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ExpectationCounter_test.cpp 29 Dec 2005 19:29:51 -0000 1.19 +++ ExpectationCounter_test.cpp 30 Dec 2005 15:31:59 -0000 1.20 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ExpectationCounter_test ); @@ -68,26 +70,26 @@ #endif public: - void test_expectNothing(); - void test_expectNothing_revoked(); - void fail_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing_revoked(); + MOCKPP_TEST_DECL void fail_expectNothing(); - void test_expectActualImmediate(); - void fail_expectActualImmediate(); + MOCKPP_TEST_DECL void test_expectActualImmediate(); + MOCKPP_TEST_DECL void fail_expectActualImmediate(); - void test_expectActualVerify(); - void fail_expectActualVerify(); + MOCKPP_TEST_DECL void test_expectActualVerify(); + MOCKPP_TEST_DECL void fail_expectActualVerify(); - void test_name(); - void test_clearActual(); - void test_clear(); - void test_hasExpectations(); - void test_ifNoExpected(); + MOCKPP_TEST_DECL void test_name(); + MOCKPP_TEST_DECL void test_clearActual(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_hasExpectations(); + MOCKPP_TEST_DECL void test_ifNoExpected(); - void fail_ifNoActual(); - void doNothing(mockpp::ExpectationCounter &ec); - void doActualImmediate(mockpp::ExpectationCounter &ec); - void doActualVerify(mockpp::ExpectationCounter &ec); + MOCKPP_TEST_DECL void fail_ifNoActual(); + MOCKPP_TEST_DECL void doNothing(mockpp::ExpectationCounter &ec); + MOCKPP_TEST_DECL void doActualImmediate(mockpp::ExpectationCounter &ec); + MOCKPP_TEST_DECL void doActualVerify(mockpp::ExpectationCounter &ec); }; #if defined (MOCKPP_USE_CXXTEST) @@ -111,6 +113,8 @@ MOCKPP_CXXTEST(ExpectationCounter_test, fail_ifNoActual); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ExpectationCounter_test); Index: OutBound_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/OutBound_test.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- OutBound_test.cpp 29 Dec 2005 19:29:51 -0000 1.6 +++ OutBound_test.cpp 30 Dec 2005 15:31:59 -0000 1.7 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( OutBound_test ); @@ -53,8 +55,8 @@ public: - void test_describe(); - void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -64,6 +66,8 @@ MOCKPP_CXXTEST(OutBound_test, test_describe); MOCKPP_CXXTEST(OutBound_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (OutBound_test); Index: ResponseVector_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ResponseVector_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- ResponseVector_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 +++ ResponseVector_test.cpp 30 Dec 2005 15:31:59 -0000 1.11 @@ -42,6 +42,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ResponseVector_Test ); @@ -55,8 +57,8 @@ public: - void test_value(); - void test_thrower(); + MOCKPP_TEST_DECL void test_value(); + MOCKPP_TEST_DECL void test_thrower(); }; @@ -66,6 +68,8 @@ MOCKPP_CXXTEST(ResponseVector_Test, test_value); MOCKPP_CXXTEST(ResponseVector_Test, test_thrower); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ResponseVector_Test); Index: ExpectationConglomeration_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationConglomeration_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ExpectationConglomeration_test.cpp 29 Dec 2005 19:29:51 -0000 1.18 +++ ExpectationConglomeration_test.cpp 30 Dec 2005 15:31:59 -0000 1.19 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ExpectationConglomeration_test ); @@ -71,27 +73,27 @@ #endif public: - void test_expectNothing(); - void test_expectNothing_revoked(); - void fail_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing(); + MOCKPP_TEST_DECL void test_expectNothing_revoked(); + MOCKPP_TEST_DECL void fail_expectNothing(); - void test_expectActualImmediate(); - void fail_expectActualImmediate(); + MOCKPP_TEST_DECL void test_expectActualImmediate(); + MOCKPP_TEST_DECL void fail_expectActualImmediate(); - void test_expectActualVerify(); - void fail_expectActualVerify(); + MOCKPP_TEST_DECL void test_expectActualVerify(); + MOCKPP_TEST_DECL void fail_expectActualVerify(); - void test_clear(); - void test_chain(); - void fail_many(); - void test_name(); - void fail_clearActual(); - void test_hasExpectations(); - void test_hasExpectations2(); - void test_ifNoExpected(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_chain(); + MOCKPP_TEST_DECL void fail_many(); + MOCKPP_TEST_DECL void test_name(); + MOCKPP_TEST_DECL void fail_clearActual(); + MOCKPP_TEST_DECL void test_hasExpectations(); + MOCKPP_TEST_DECL void test_hasExpectations2(); + MOCKPP_TEST_DECL void test_ifNoExpected(); - void test_many(); - void fail_ifNoActual(); + MOCKPP_TEST_DECL void test_many(); + MOCKPP_TEST_DECL void fail_ifNoActual(); }; #if defined (MOCKPP_USE_CXXTEST) @@ -119,6 +121,8 @@ MOCKPP_CXXTEST(ExpectationConglomeration_test, fail_ifNoActual); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ExpectationConglomeration_test); Index: NoArgumentsMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoArgumentsMatcher_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- NoArgumentsMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.15 +++ NoArgumentsMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.16 @@ -44,6 +44,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE(NoArgumentsMatcher_test ); @@ -56,7 +58,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -65,6 +67,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( NoArgumentsMatcher_test ); MOCKPP_CXXTEST(NoArgumentsMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (NoArgumentsMatcher_test); Index: InvokeAtMostMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeAtMostMatcher_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- InvokeAtMostMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 +++ InvokeAtMostMatcher_test.cpp 30 Dec 2005 15:31:59 -0000 1.13 @@ -40,6 +40,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( InvokeAtMostMatcher_test ); @@ -52,7 +54,7 @@ public: - void test_invoke(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -61,6 +63,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( InvokeAtMostMatcher_test ); MOCKPP_CXXTEST(InvokeAtMostMatcher_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (InvokeAtMostMatcher_test); Index: VisitableMockObject_4_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_4_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- VisitableMockObject_4_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 +++ VisitableMockObject_4_test.cpp 30 Dec 2005 15:31:59 -0000 1.26 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( VisitableMockObject_4_test ); @@ -83,29 +85,29 @@ public: - void test_controller(); - void test_thrower(); - void test_parameter(); - void test_parameter_ex(); - void test_response(); - void test_return(); - void test_clear(); - void test_default_throw(); - void test_inline_pre_1_2(); - void test_inline_post_1_2(); - void test_constraint(); - void test_controller_constraint(); + MOCKPP_TEST_DECL void test_controller(); + MOCKPP_TEST_DECL void test_thrower(); + MOCKPP_TEST_DECL void test_parameter(); + MOCKPP_TEST_DECL void test_parameter_ex(); + MOCKPP_TEST_DECL void test_response(); + MOCKPP_TEST_DECL void test_return(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_default_throw(); + MOCKPP_TEST_DECL void test_inline_pre_1_2(); + MOCKPP_TEST_DECL void test_inline_post_1_2(); + MOCKPP_TEST_DECL void test_constraint(); + MOCKPP_TEST_DECL void test_controller_constraint(); - void fail_unused_value(); - void fail_unused_throwable(); - void fail_parameter(); - void fail_return(); - void fail_add_method_after_active(); - void fail_add_throw_val_after_active(); - void fail_add_throw_after_active(); - void fail_set_throw_after_active(); - void fail_add_return_after_active(); - void fail_set_return_after_active(); + MOCKPP_TEST_DECL void fail_unused_value(); + MOCKPP_TEST_DECL void fail_unused_throwable(); + MOCKPP_TEST_DECL void fail_parameter(); + MOCKPP_TEST_DECL void fail_return(); + MOCKPP_TEST_DECL void fail_add_method_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_val_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_after_active(); + MOCKPP_TEST_DECL void fail_set_throw_after_active(); + MOCKPP_TEST_DECL void fail_add_return_after_active(); + MOCKPP_TEST_DECL void fail_set_return_after_active(); }; @@ -137,6 +139,8 @@ MOCKPP_CXXTEST(VisitableMockObject_4_test, fail_unused_throwable); MOCKPP_CXXTEST(VisitableMockObject_4_test, fail_unused_value); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (VisitableMockObject_4_test); Index: VisitableMockObject_3_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_3_void_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- VisitableMockObject_3_void_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 +++ VisitableMockObject_3_void_test.cpp 30 Dec 2005 15:31:59 -0000 1.26 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( VisitableMockObject_3_void_test ); @@ -76,22 +78,22 @@ public: - void test_outbound(); - void test_controller(); - void test_thrower(); - void test_clear(); - void test_default_throw(); - void test_parameter_ex(); - void test_parameter(); - void test_constraint(); - void test_controller_constraint(); + MOCKPP_TEST_DECL void test_outbound(); + MOCKPP_TEST_DECL void test_controller(); + MOCKPP_TEST_DECL void test_thrower(); + MOCKPP_TEST_DECL void test_clear(); + MOCKPP_TEST_DECL void test_default_throw(); + MOCKPP_TEST_DECL void test_parameter_ex(); + MOCKPP_TEST_DECL void test_parameter(); + MOCKPP_TEST_DECL void test_constraint(); + MOCKPP_TEST_DECL void test_controller_constraint(); - void fail_unused_throwable(); - void fail_add_method_after_active(); - void fail_add_throw_val_after_active(); - void fail_add_throw_after_active(); - void fail_set_throw_after_active(); - void fail_parameter(); + MOCKPP_TEST_DECL void fail_unused_throwable(); + MOCKPP_TEST_DECL void fail_add_method_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_val_after_active(); + MOCKPP_TEST_DECL void fail_add_throw_after_active(); + MOCKPP_TEST_DECL void fail_set_throw_after_active(); + MOCKPP_TEST_DECL void fail_parameter(); }; @@ -116,6 +118,8 @@ MOCKPP_CXXTEST(VisitableMockObject_3_void_test, fail_parameter); MOCKPP_CXXTEST(VisitableMockObject_3_void_test, fail_unused_throwable); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (VisitableMockObject_3_void_test); Index: StubSequence_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StubSequence_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- StubSequence_test.cpp 29 Dec 2005 19:29:52 -0000 1.20 +++ StubSequence_test.cpp 30 Dec 2005 15:31:59 -0000 1.21 @@ -46,6 +46,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( StubSequence_test ); @@ -59,8 +61,8 @@ public: - void test_describe(); - void test_invoke(); + MOCKPP_TEST_DECL void test_describe(); + MOCKPP_TEST_DECL void test_invoke(); }; @@ -70,6 +72,8 @@ MOCKPP_CXXTEST(StubSequence_test, test_describe); MOCKPP_CXXTEST(StubSequence_test, test_invoke); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (StubSequence_test); Index: MatchBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MatchBuilder_test.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- MatchBuilder_test.cpp 29 Dec 2005 19:29:51 -0000 1.27 +++ MatchBuilder_test.cpp 30 Dec 2005 15:31:59 -0000 1.28 @@ -55,6 +55,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( MatchBuilder_test ); @@ -68,8 +70,8 @@ public: - void test_order(); - void test_order_defered(); + MOCKPP_TEST_DECL void test_order(); + MOCKPP_TEST_DECL void test_order_defered(); }; @@ -79,6 +81,8 @@ MOCKPP_CXXTEST(MatchBuilder_test, test_order ); MOCKPP_CXXTEST(MatchBuilder_test, test_order_defered ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION ( MatchBuilder_test ); Index: ChainableMockObject_2_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_2_void_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChainableMockObject_2_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 +++ ChainableMockObject_2_void_test.cpp 30 Dec 2005 15:31:58 -0000 1.18 @@ -49,6 +49,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_2_void_test ); @@ -62,8 +64,8 @@ public: - void test_outbound(); - void test_parameter_2(); + MOCKPP_TEST_DECL void test_outbound(); + MOCKPP_TEST_DECL void test_parameter_2(); }; @@ -73,6 +75,8 @@ MOCKPP_CXXTEST(ChainableMockObject_2_void_test, test_outbound); MOCKPP_CXXTEST(ChainableMockObject_2_void_test, test_parameter_2 ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_2_void_test); Index: ChainableMockObject_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_void_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChainableMockObject_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 +++ ChainableMockObject_void_test.cpp 30 Dec 2005 15:31:58 -0000 1.18 @@ -50,6 +50,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainableMockObject_void_test ); @@ -63,8 +65,8 @@ public: - void test_register(); - void test_expect_throw(); + MOCKPP_TEST_DECL void test_register(); + MOCKPP_TEST_DECL void test_expect_throw(); }; @@ -74,6 +76,8 @@ MOCKPP_CXXTEST(ChainableMockObject_void_test, test_register); MOCKPP_CXXTEST(ChainableMockObject_void_test, test_expect_throw); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (ChainableMockObject_void_test); Index: Exception_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Exception_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Exception_test.cpp 29 Dec 2005 19:29:51 -0000 1.18 +++ Exception_test.cpp 30 Dec 2005 15:31:59 -0000 1.19 @@ -41,6 +41,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( Exception_test ); @@ -53,7 +55,7 @@ public: - void test_file_line(); + MOCKPP_TEST_DECL void test_file_line(); }; @@ -62,6 +64,8 @@ MOCKPP_CXXTEST_SUITE_REGISTRATION( Exception_test ); MOCKPP_CXXTEST(Exception_test, test_file_line); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION (Exception_test); Index: ChainingMockObjectSupport_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockObjectSupport_test.cpp,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- ChainingMockObjectSupport_test.cpp 29 Dec 2005 19:29:51 -0000 1.38 +++ ChainingMockObjectSupport_test.cpp 30 Dec 2005 15:31:58 -0000 1.39 @@ -50,6 +50,8 @@ #if defined (MOCKPP_USE_CXXTEST) +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE( ChainingMockObjectSupport_test ); @@ -84,30 +86,30 @@ public: - void test_string_contains(); - void test_string_ends(); - void test_string_starts(); - void test_actor(); - void test_counts(); - void test_consecutive_typeless(); - void test_consecutive_custom(); + MOCKPP_TEST_DECL void test_string_contains(); + MOCKPP_TEST_DECL void test_string_ends(); + MOCKPP_TEST_DECL void test_string_starts(); + MOCKPP_TEST_DECL void test_actor(); + MOCKPP_TEST_DECL void test_counts(); + MOCKPP_TEST_DECL void test_consecutive_typeless(); + MOCKPP_TEST_DECL void test_consecutive_custom(); - void test_invoke_and(); - void test_invoke_or(); - void test_invoke_not(); + MOCKPP_TEST_DECL void test_invoke_and(); + MOCKPP_TEST_DECL void test_invoke_or(); + MOCKPP_TEST_DECL void test_invoke_not(); #ifndef MOCKPP_NO_RTTI - void test_instance(); + MOCKPP_TEST_DECL void test_instance(); #endif - void test_same_func(); - void test_less_equal_func(); - void test_less_func(); - void test_greater_equal_func(); - void test_greater_func(); - void test_equal_func(); - void test_not_equal_func(); - void test_nothing_func(); - void test_any_func(); - void test_closeto_func(); + MOCKPP_TEST_DECL void test_same_func(); + MOCKPP_TEST_DECL void test_less_equal_func(); + MOCKPP_TEST_DECL void test_less_func(); + MOCKPP_TEST_DECL void test_greater_equal_func(); + MOCKPP_TEST_DECL void test_greater_func(); + MOCKPP_TEST_DECL void test_equal_func(); + MOCKPP_TEST_DECL void test_not_equal_func(); + MOCKPP_TEST_DECL void test_nothing_func(); + MOCKPP_TEST_DECL void test_any_func(); + MOCKPP_TEST_DECL void test_closeto_func(); }; @@ -138,6 +140,8 @@ MOCKPP_CXXTEST(ChainingMockObjectSupport_test, test_consecutive_typeless ); MOCKPP_CXXTEST(ChainingMockObjectSupport_test, test_consecutive_custom ); +#elif defined(MOCKPP_USE_BOOSTTEST) + #elif defined(MOCKPP_USE_CPPUNIT) CPPUNIT_TEST_SUITE_REGISTRATION ( ChainingMockObjectSupport_test ); Index: LIFOInvocationDispatcher_test.cpp =================================================================== RCS file: /cvsroot/m... [truncated message content] |
From: Ewald A. <ewa...@us...> - 2005-12-30 14:18:57
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32459 Modified Files: ChangeLog TODO Log Message: update Index: TODO =================================================================== RCS file: /cvsroot/mockpp/mockpp/TODO,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- TODO 29 Dec 2005 08:04:40 -0000 1.53 +++ TODO 30 Dec 2005 14:18:46 -0000 1.54 @@ -16,6 +16,8 @@ DOC: ---- +explain options in config files + Problem Exception-Transformation?? Tests Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.89 retrieving revision 1.90 diff -u -d -r1.89 -r1.90 --- ChangeLog 29 Dec 2005 19:29:49 -0000 1.89 +++ ChangeLog 30 Dec 2005 14:18:46 -0000 1.90 @@ -2,8 +2,14 @@ mockpp history -------------- + 2006-01-01 1.11.1 + - add all directories in doxy file + - update handbook, apidoc + - sprinf_s only for msvc2005 + - do not create cxxtest library when usage disabled + 2005-11-29 1.11.0-beta1 - removed superfluous template parameter |
From: Ewald A. <ewa...@us...> - 2005-12-30 14:18:43
|
Update of /cvsroot/mockpp/mockpp/mockpp/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32400/mockpp/framework Modified Files: CxxTestRunner.h Log Message: docs Index: CxxTestRunner.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/CxxTestRunner.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- CxxTestRunner.h 29 Dec 2005 19:29:51 -0000 1.3 +++ CxxTestRunner.h 30 Dec 2005 14:18:30 -0000 1.4 @@ -42,10 +42,15 @@ namespace mockpp { +/** Helper class to run tests with CxxTest framework. + */ class CxxTestRunner : public CxxTest::TestRunner { public: + /** Internal method wihich runs all the tests. + * @param listener pointer to test listener + */ static void runAllTests( CxxTest::TestListener &listener ) { CxxTest::tracker().setListener( &listener ); |
From: Ewald A. <ewa...@us...> - 2005-12-30 14:18:27
|
Update of /cvsroot/mockpp/mockpp/mockpp/docs/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32254/mockpp/docs/en Modified Files: appendix.docbook Log Message: typo Index: appendix.docbook =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/docs/en/appendix.docbook,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- appendix.docbook 30 Dec 2005 12:41:44 -0000 1.16 +++ appendix.docbook 30 Dec 2005 14:18:17 -0000 1.17 @@ -88,7 +88,7 @@ </varlistentry> <varlistentry> - <term>--disable-cxxtest</term> + <term>--disable-builtin-cxxtest</term> <listitem>By default &mockpp; uses a built-in version of &cxxtest; as test framework. If you want to use another framework you should disable it to remove all internal dependencies. Please understand that in this case the unit tests |
From: Ewald A. <ewa...@us...> - 2005-12-30 14:18:17
|
Update of /cvsroot/mockpp/mockpp/3party In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32182/3party Modified Files: Makefile.am Log Message: update Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 9 Dec 2005 20:40:42 -0000 1.2 +++ Makefile.am 30 Dec 2005 14:17:56 -0000 1.3 @@ -2,7 +2,7 @@ CLEANFILES = *.~* *.~~* *~ -# EXTRA_DIST = +# EXTRA_DIST = |
From: Ewald A. <ewa...@us...> - 2005-12-30 14:17:47
|
Update of /cvsroot/mockpp/mockpp/3party/cxxtest/cxxtest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32143/3party/cxxtest/cxxtest Modified Files: Makefile.am Log Message: no creation if usage disabled Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/cxxtest/cxxtest/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 18 Dec 2005 16:56:22 -0000 1.4 +++ Makefile.am 30 Dec 2005 14:17:36 -0000 1.5 @@ -1,6 +1,8 @@ INCLUDES = $(all_includes) -I$(top_srcdir) -I$(top_srcdir)/3party/cxxtest -I$(top_builddir) $(EA_EXTRA_INC) DEFAULT_INCLUDES = $(INCLUDES) +if BUILTIN_CXXTEST + lib_LTLIBRARIES = libmockpp_cxxtest.la libmockpp_cxxtest_la_LDFLAGS = -no-undefined -version-info \ @@ -46,3 +48,5 @@ Win32Gui.h \ X11Gui.h \ YesNoRunner.h + +endif |
From: Ewald A. <ewa...@us...> - 2005-12-30 12:43:42
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14151 Modified Files: configure.in Log Message: inc version Index: configure.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/configure.in,v retrieving revision 1.107 retrieving revision 1.108 diff -u -d -r1.107 -r1.108 --- configure.in 29 Dec 2005 12:29:51 -0000 1.107 +++ configure.in 30 Dec 2005 12:43:34 -0000 1.108 @@ -17,7 +17,7 @@ # MOCKPP_MAJOR_VERSION=1 MOCKPP_MINOR_VERSION=11 -MOCKPP_PATCH_VERSION=0 +MOCKPP_PATCH_VERSION=1 MOCKPP_MICRO_VERSION=35 MOCKPP_INTERFACE_AGE=1 @@ -45,7 +45,7 @@ AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(mockpp, $MOCKPP_VERSION-beta1) +AM_INIT_AUTOMAKE(mockpp, $MOCKPP_VERSION) AC_SUBST(all_includes) AC_SUBST(all_libraries) |
From: Ewald A. <ewa...@us...> - 2005-12-30 12:43:25
|
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14099/mockpp Modified Files: Makefile.am mockpp.h Log Message: fix msvc2005 Index: mockpp.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.h,v retrieving revision 1.70 retrieving revision 1.71 diff -u -d -r1.70 -r1.71 --- mockpp.h 29 Dec 2005 19:29:50 -0000 1.70 +++ mockpp.h 30 Dec 2005 12:43:17 -0000 1.71 @@ -103,9 +103,8 @@ # endif // _MSC_VER -// msvc60 is 1200? -// msvc70 is 1300 -// msvc71 is 1310 +// msvc71 is 1310 +// msvc2005 is 1400 #ifdef _MSC_VER # include <mockpp/mockpp_config-msvc_71.h> Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Makefile.am,v retrieving revision 1.106 retrieving revision 1.107 diff -u -d -r1.106 -r1.107 --- Makefile.am 29 Dec 2005 08:04:40 -0000 1.106 +++ Makefile.am 30 Dec 2005 12:43:17 -0000 1.107 @@ -118,7 +118,9 @@ TODAY=`date +%Y-%m-%d` ; echo "/* Generated: $$TODAY */" >>$@ echo "" >>$@ echo "/* Define to use sprintf_s instead of sprintf. */" >>$@ - echo "#define HAVE_SPRINTF_S" >>$@ + echo "#if _MSC_VER >= 1400" >>$@ + echo "# define HAVE_SPRINTF_S" >>$@ + echo "#endif" >>$@ echo "" >>$@ $(SHELL) $(srcdir)/config/gen-config-common.sh $@ $(VERSION) $(PACKAGE) -test $@ -ef $(srcdir) || cp $@ $(srcdir) |
From: Ewald A. <ewa...@us...> - 2005-12-30 12:42:01
|
Update of /cvsroot/mockpp/mockpp/mockpp/docs/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13975/mockpp/docs/en Modified Files: appendix.docbook Log Message: update options Index: appendix.docbook =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/docs/en/appendix.docbook,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- appendix.docbook 28 Dec 2005 09:23:30 -0000 1.15 +++ appendix.docbook 30 Dec 2005 12:41:44 -0000 1.16 @@ -87,6 +87,21 @@ </listitem> </varlistentry> + <varlistentry> + <term>--disable-cxxtest</term> + <listitem>By default &mockpp; uses a built-in version of &cxxtest; as test + framework. If you want to use another framework you should disable it to remove + all internal dependencies. Please understand that in this case the unit tests + won't run if you don't enable another supported framework instead. + </listitem> + </varlistentry> + + <varlistentry> + <term>--enable-cppunit</term> + <listitem>This option enables &cppunit; as test framework. + </listitem> + </varlistentry> + </variablelist> |
Update of /cvsroot/mockpp/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp Modified Files: AbstractExpectation.h AbstractExpectationCollection.h CountParameters.h Expectation.h ExpectationBoundary.h ExpectationConglomeration.h ExpectationCounter.cpp ExpectationCounter.h ExpectationList.h ExpectationMap.h ExpectationSegment.h ExpectationSet.h ExpectationValue.h MixedMockObject.cpp MixedMockObject.h MockObject.cpp MockObject.h MockTimeServer.cpp MockTimeServer.h ReturnObjectList.h SelfDescribing.cpp SelfDescribing.h Throwable.cpp Throwable.h ThrowableList.cpp ThrowableList.h TrackingCounter.cpp TrackingCounter.h Verifiable.cpp Verifiable.h VerifiableList.cpp VerifiableList.h gen_countparams_N.pl mockpp.cpp mockpp.h mockpp_dbc.h Log Message: update copyright date Index: TrackingCounter.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/TrackingCounter.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- TrackingCounter.cpp 28 Dec 2005 21:30:16 -0000 1.12 +++ TrackingCounter.cpp 29 Dec 2005 19:29:50 -0000 1.13 @@ -8,7 +8,7 @@ /************************************************************************** begin : Fri Feb 18 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationCounter.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationCounter.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ExpectationCounter.h 13 Nov 2005 11:53:18 -0000 1.23 +++ ExpectationCounter.h 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 19 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationList.h,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- ExpectationList.h 26 Nov 2005 18:00:16 -0000 1.40 +++ ExpectationList.h 29 Dec 2005 19:29:50 -0000 1.41 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Dec 21 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationConglomeration.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationConglomeration.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ExpectationConglomeration.h 26 Nov 2005 18:00:16 -0000 1.20 +++ ExpectationConglomeration.h 29 Dec 2005 19:29:50 -0000 1.21 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Dec 21 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationValue.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationValue.h,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- ExpectationValue.h 13 Nov 2005 11:53:18 -0000 1.31 +++ ExpectationValue.h 29 Dec 2005 19:29:50 -0000 1.32 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Throwable.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Throwable.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Throwable.h 23 Dec 2005 22:03:30 -0000 1.18 +++ Throwable.h 29 Dec 2005 19:29:50 -0000 1.19 @@ -8,7 +8,7 @@ /************************************************************************** begin : Mon Jan 20 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MockObject.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MockObject.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- MockObject.h 26 Nov 2005 18:00:16 -0000 1.23 +++ MockObject.h 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Fri Dec 18 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: SelfDescribing.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/SelfDescribing.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- SelfDescribing.h 30 Dec 2004 20:54:03 -0000 1.5 +++ SelfDescribing.h 29 Dec 2005 19:29:50 -0000 1.6 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: SelfDescribing.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/SelfDescribing.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- SelfDescribing.cpp 30 Dec 2004 20:54:03 -0000 1.2 +++ SelfDescribing.cpp 29 Dec 2005 19:29:50 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VerifiableList.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/VerifiableList.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- VerifiableList.cpp 28 Dec 2005 21:30:16 -0000 1.20 +++ VerifiableList.cpp 29 Dec 2005 19:29:50 -0000 1.21 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: AbstractExpectation.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/AbstractExpectation.h,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- AbstractExpectation.h 28 Dec 2005 21:30:16 -0000 1.25 +++ AbstractExpectation.h 29 Dec 2005 19:29:50 -0000 1.26 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 19 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de Index: mockpp_dbc.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp_dbc.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mockpp_dbc.h 29 Oct 2005 19:09:26 -0000 1.3 +++ mockpp_dbc.h 29 Dec 2005 19:29:50 -0000 1.4 @@ -23,7 +23,7 @@ /************************************************************************** begin : Sun Apr 23 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MixedMockObject.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MixedMockObject.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- MixedMockObject.cpp 13 Nov 2005 11:53:18 -0000 1.2 +++ MixedMockObject.cpp 29 Dec 2005 19:29:50 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Mar 05 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ThrowableList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ThrowableList.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ThrowableList.h 26 Nov 2005 20:16:55 -0000 1.23 +++ ThrowableList.h 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Mon Jan 20 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationCounter.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationCounter.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ExpectationCounter.cpp 13 Nov 2005 11:53:18 -0000 1.23 +++ ExpectationCounter.cpp 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Mon Dec 30 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationMap.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationMap.h,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- ExpectationMap.h 26 Nov 2005 18:00:16 -0000 1.26 +++ ExpectationMap.h 29 Dec 2005 19:29:50 -0000 1.27 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 26 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MockObject.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MockObject.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- MockObject.cpp 27 Nov 2005 15:34:36 -0000 1.25 +++ MockObject.cpp 29 Dec 2005 19:29:50 -0000 1.26 @@ -9,7 +9,7 @@ /************************************************************************** begin : Fri Dec 18 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ThrowableList.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ThrowableList.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- ThrowableList.cpp 28 Dec 2005 21:30:16 -0000 1.24 +++ ThrowableList.cpp 29 Dec 2005 19:29:50 -0000 1.25 @@ -8,7 +8,7 @@ /************************************************************************** begin : We Jan 22 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_countparams_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/gen_countparams_N.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gen_countparams_N.pl 31 Oct 2005 20:50:37 -0000 1.2 +++ gen_countparams_N.pl 29 Dec 2005 19:29:50 -0000 1.3 @@ -28,7 +28,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Throwable.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Throwable.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Throwable.cpp 28 Dec 2005 21:30:16 -0000 1.15 +++ Throwable.cpp 29 Dec 2005 19:29:50 -0000 1.16 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sam Feb 8 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Verifiable.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Verifiable.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Verifiable.h 27 Feb 2005 11:48:14 -0000 1.20 +++ Verifiable.h 29 Dec 2005 19:29:50 -0000 1.21 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: mockpp.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.h,v retrieving revision 1.69 retrieving revision 1.70 diff -u -d -r1.69 -r1.70 --- mockpp.h 28 Dec 2005 19:43:08 -0000 1.69 +++ mockpp.h 29 Dec 2005 19:29:50 -0000 1.70 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 12 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify @@ -483,7 +483,8 @@ class AssertionFailedError; typedef void (*AssertionFailedForwarder_t)(const AssertionFailedError &err); -/** Sets the function pointer which handels failed assertions. +/** Sets the function pointer which handles failed assertions. + * Actually it is invoked instead of throwing exceptions. * @param fwd pointer to function. * @return previous pointer */ Index: AbstractExpectationCollection.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/AbstractExpectationCollection.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- AbstractExpectationCollection.h 13 Nov 2005 11:53:18 -0000 1.17 +++ AbstractExpectationCollection.h 29 Dec 2005 19:29:50 -0000 1.18 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Dec 21 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MixedMockObject.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MixedMockObject.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- MixedMockObject.h 10 Dec 2005 20:07:21 -0000 1.4 +++ MixedMockObject.h 29 Dec 2005 19:29:50 -0000 1.5 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Mar 05 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: mockpp.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/mockpp.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- mockpp.cpp 28 Dec 2005 19:43:08 -0000 1.23 +++ mockpp.cpp 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 12 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify @@ -124,7 +124,7 @@ extern AssertionFailedForwarder_t forwardAssertionFailed; AssertionFailedForwarder_t -MOCKPP_EXPORT +MOCKPP_EXPORT setAssertionFailedForwarder(AssertionFailedForwarder_t fwd) { AssertionFailedForwarder_t temp = forwardAssertionFailed; Index: TrackingCounter.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/TrackingCounter.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- TrackingCounter.h 26 Nov 2005 18:00:17 -0000 1.7 +++ TrackingCounter.h 29 Dec 2005 19:29:50 -0000 1.8 @@ -8,7 +8,7 @@ /************************************************************************** begin : Fri Feb 18 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationSegment.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationSegment.h,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- ExpectationSegment.h 13 Nov 2005 11:53:18 -0000 1.27 +++ ExpectationSegment.h 29 Dec 2005 19:29:50 -0000 1.28 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 18 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationSet.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationSet.h,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- ExpectationSet.h 26 Nov 2005 18:00:16 -0000 1.34 +++ ExpectationSet.h 29 Dec 2005 19:29:50 -0000 1.35 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Dec 21 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ExpectationBoundary.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ExpectationBoundary.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- ExpectationBoundary.h 13 Nov 2005 11:53:18 -0000 1.21 +++ ExpectationBoundary.h 29 Dec 2005 19:29:50 -0000 1.22 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Expectation.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Expectation.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- Expectation.h 31 Aug 2005 15:22:03 -0000 1.17 +++ Expectation.h 29 Dec 2005 19:29:50 -0000 1.18 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: CountParameters.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/CountParameters.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- CountParameters.h 13 Nov 2005 11:53:18 -0000 1.4 +++ CountParameters.h 29 Dec 2005 19:29:50 -0000 1.5 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Verifiable.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/Verifiable.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Verifiable.cpp 27 Feb 2005 11:48:14 -0000 1.20 +++ Verifiable.cpp 29 Dec 2005 19:29:50 -0000 1.21 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de Index: ReturnObjectList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/ReturnObjectList.h,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- ReturnObjectList.h 26 Nov 2005 20:16:55 -0000 1.33 +++ ReturnObjectList.h 29 Dec 2005 19:29:50 -0000 1.34 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Dec 21 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VerifiableList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/VerifiableList.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- VerifiableList.h 26 Nov 2005 18:00:17 -0000 1.18 +++ VerifiableList.h 29 Dec 2005 19:29:50 -0000 1.19 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 17 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MockTimeServer.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MockTimeServer.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- MockTimeServer.h 30 Apr 2005 21:15:45 -0000 1.2 +++ MockTimeServer.h 29 Dec 2005 19:29:50 -0000 1.3 @@ -1,78 +1,78 @@ -/** @file - @brief Time dependent objects - - $Id$ - - **************************************************************************/ - -/************************************************************************** - - begin : Sat Apr 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold - email : mockpp at ewald-arnold dot de - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2 of the License, - or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - **/ - -#ifndef MOCKPP_TimeServerMock_H -#define MOCKPP_TimeServerMock_H - -#include <mockpp/mockpp.h> // always first - -#include <mockpp/production/TimeServer.h> - -#include <mockpp/ReturnObjectList.h> - - -namespace mockpp { - -/** Mock object to return defined time points. - * \ingroup grp_basic_mo - * Some unix times: - * @li 2005-02-02T10:52:19 ==> 1107337939L (0x4200A2D3) - */ -class MockTimeServer : public TimeServer -{ - public: - - /** Construct a mock time server - * @param name object name - * @param parent parent verifiable - */ - MockTimeServer(const String &name = MOCKPP_PCHAR("") , mockpp::VerifiableList *parent = 0); - - /** Returns the "current" unix time - * @return unix time - */ - virtual std::time_t getUnixTime(); - - /** Adds another "current" unix time - * @param time unix time - */ - void addUnixTime(std::time_t time); - - private: - - mockpp::ReturnObjectList<std::time_t> mocktimes; -}; - - -} // namespace mockpp - - -#endif // MOCKPP_TimeServerMock_H - - +/** @file + @brief Time dependent objects + + $Id$ + + **************************************************************************/ + +/************************************************************************** + + begin : Sat Apr 30 2005 + copyright : (C) 2002-2006 by Ewald Arnold + email : mockpp at ewald-arnold dot de + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + **/ + +#ifndef MOCKPP_TimeServerMock_H +#define MOCKPP_TimeServerMock_H + +#include <mockpp/mockpp.h> // always first + +#include <mockpp/production/TimeServer.h> + +#include <mockpp/ReturnObjectList.h> + + +namespace mockpp { + +/** Mock object to return defined time points. + * \ingroup grp_basic_mo + * Some unix times: + * @li 2005-02-02T10:52:19 ==> 1107337939L (0x4200A2D3) + */ +class MockTimeServer : public TimeServer +{ + public: + + /** Construct a mock time server + * @param name object name + * @param parent parent verifiable + */ + MockTimeServer(const String &name = MOCKPP_PCHAR("") , mockpp::VerifiableList *parent = 0); + + /** Returns the "current" unix time + * @return unix time + */ + virtual std::time_t getUnixTime(); + + /** Adds another "current" unix time + * @param time unix time + */ + void addUnixTime(std::time_t time); + + private: + + mockpp::ReturnObjectList<std::time_t> mocktimes; +}; + + +} // namespace mockpp + + +#endif // MOCKPP_TimeServerMock_H + + Index: MockTimeServer.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/MockTimeServer.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- MockTimeServer.cpp 30 Apr 2005 15:06:05 -0000 1.1 +++ MockTimeServer.cpp 29 Dec 2005 19:29:50 -0000 1.2 @@ -1,59 +1,59 @@ -/** @file - @brief Mock time dependent objects - - $Id$ - - **************************************************************************/ - -/************************************************************************** - - begin : Sat Apr 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold - email : mockpp at ewald-arnold dot de - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2 of the License, - or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - **/ - -#include <mockpp/mockpp.h> // always first - -#include <mockpp/MockTimeServer.h> - - -namespace mockpp { - - -MOCKPP_EXPORT - MockTimeServer::MockTimeServer(const String &name, - VerifiableList *parent) - : mocktimes(name + MOCKPP_PCHAR("/MockTimeServer"), parent) -{ -} - - -std::time_t MOCKPP_EXPORT MockTimeServer::getUnixTime() -{ - return mocktimes.nextReturnObject(); -} - - -void MOCKPP_EXPORT MockTimeServer::addUnixTime(std::time_t time) -{ - mocktimes.addObjectToReturn(time); -} - - -} // namespace mockpp - +/** @file + @brief Mock time dependent objects + + $Id$ + + **************************************************************************/ + +/************************************************************************** + + begin : Sat Apr 30 2005 + copyright : (C) 2002-2006 by Ewald Arnold + email : mockpp at ewald-arnold dot de + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + **/ + +#include <mockpp/mockpp.h> // always first + +#include <mockpp/MockTimeServer.h> + + +namespace mockpp { + + +MOCKPP_EXPORT + MockTimeServer::MockTimeServer(const String &name, + VerifiableList *parent) + : mocktimes(name + MOCKPP_PCHAR("/MockTimeServer"), parent) +{ +} + + +std::time_t MOCKPP_EXPORT MockTimeServer::getUnixTime() +{ + return mocktimes.nextReturnObject(); +} + + +void MOCKPP_EXPORT MockTimeServer::addUnixTime(std::time_t time) +{ + mocktimes.addObjectToReturn(time); +} + + +} // namespace mockpp + |
From: Ewald A. <ewa...@us...> - 2005-12-29 19:30:34
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933 Modified Files: ChangeLog mockpp.doxygen.in Log Message: update copyright date Index: mockpp.doxygen.in =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp.doxygen.in,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- mockpp.doxygen.in 18 Nov 2005 21:44:33 -0000 1.19 +++ mockpp.doxygen.in 29 Dec 2005 19:29:49 -0000 1.20 @@ -450,7 +450,9 @@ @abs_srcdir@/mockpp/constraint \ @abs_srcdir@/mockpp/matcher \ @abs_srcdir@/mockpp/production \ - @abs_srcdir@/mockpp/chaining + @abs_srcdir@/mockpp/chaining \ + @abs_srcdir@/mockpp/visiting \ + @abs_srcdir@/mockpp/framework # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp Index: ChangeLog =================================================================== RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v retrieving revision 1.88 retrieving revision 1.89 diff -u -d -r1.88 -r1.89 --- ChangeLog 29 Dec 2005 08:04:40 -0000 1.88 +++ ChangeLog 29 Dec 2005 19:29:49 -0000 1.89 @@ -2,7 +2,9 @@ mockpp history -------------- -2005-11-24 1.11.0 +2006-01-01 1.11.1 + +2005-11-29 1.11.0-beta1 - removed superfluous template parameter - fix compilation error due to bad namespace resolution @@ -13,7 +15,7 @@ - fixed compilation problem with msvc - removed msvc6/msvc7/bcb6/bcbX project trees (not working/supported) - compatibility break: moved all visitable files to mockpp/visiting - - compatibility break: moved all chainableable files to mockpp/chaining + - compatibility break: moved all chainable files to mockpp/chaining - compatibility break: moved all framework related files to mockpp/framework - CxxTest (built-in version) is default test framework now, CppUnit remains an option |
From: Ewald A. <ewa...@us...> - 2005-12-29 19:30:34
|
Update of /cvsroot/mockpp/mockpp/3party/ministl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/3party/ministl Modified Files: algo.h algorithm basic_string.h bool.h defalloc.h function.h functional list list.h map map.h ministl.h multimap pair.h raw_iterator.h reverse_iterator.h set set.h simplevec.h string vector vector.h Log Message: update copyright date Index: function.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/function.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- function.h 30 Nov 2005 21:46:34 -0000 1.3 +++ function.h 29 Dec 2005 19:29:49 -0000 1.4 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: set =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/set,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- set 1 Dec 2005 18:15:08 -0000 1.4 +++ set 29 Dec 2005 19:29:49 -0000 1.5 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: functional =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/functional,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- functional 29 Nov 2005 23:18:05 -0000 1.1 +++ functional 29 Dec 2005 19:29:49 -0000 1.2 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * Copyright (c) 1994 * Hewlett-Packard Company Index: basic_string.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/basic_string.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- basic_string.h 30 Nov 2005 21:46:34 -0000 1.2 +++ basic_string.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: algo.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/algo.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- algo.h 30 Nov 2005 21:46:34 -0000 1.3 +++ algo.h 29 Dec 2005 19:29:49 -0000 1.4 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: simplevec.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/simplevec.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- simplevec.h 30 Nov 2005 21:46:34 -0000 1.3 +++ simplevec.h 29 Dec 2005 19:29:49 -0000 1.4 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: ministl.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/ministl.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ministl.h 28 Dec 2005 19:43:07 -0000 1.3 +++ ministl.h 29 Dec 2005 19:29:49 -0000 1.4 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: list.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/list.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- list.h 29 Nov 2005 23:18:05 -0000 1.2 +++ list.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: vector.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/vector.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vector.h 29 Nov 2005 23:18:05 -0000 1.2 +++ vector.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: defalloc.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/defalloc.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- defalloc.h 28 Dec 2005 19:43:07 -0000 1.5 +++ defalloc.h 29 Dec 2005 19:29:49 -0000 1.6 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * Copyright (c) 1994 * Hewlett-Packard Company Index: pair.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/pair.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- pair.h 29 Nov 2005 23:18:05 -0000 1.2 +++ pair.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: map =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/map,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- map 1 Dec 2005 18:15:08 -0000 1.4 +++ map 29 Dec 2005 19:29:49 -0000 1.5 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: multimap =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/multimap,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- multimap 1 Dec 2005 19:43:03 -0000 1.2 +++ multimap 29 Dec 2005 19:29:49 -0000 1.3 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * Generated by extending map.h * * This library is free software; you can redistribute it and/or Index: string =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/string,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- string 28 Dec 2005 19:43:08 -0000 1.6 +++ string 29 Dec 2005 19:29:49 -0000 1.7 @@ -1,7 +1,7 @@ /** ** Copyright (c) 1994-1995 Modena Software Inc., ** - ** Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + ** Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de ** ** Permission to use, copy, modify, distribute and sell this software ** and its documentation for any purpose is hereby granted without fee, Index: bool.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/bool.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- bool.h 29 Nov 2005 23:18:05 -0000 1.2 +++ bool.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -1,6 +1,6 @@ // MICO --- a free CORBA implementation // -// Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de +// Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de // // Defining TRUE and FALSE is usually a Bad Idea, // because you will probably be inconsistent with anyone Index: map.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/map.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- map.h 1 Dec 2005 18:15:08 -0000 1.3 +++ map.h 29 Dec 2005 19:29:49 -0000 1.4 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: reverse_iterator.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/reverse_iterator.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- reverse_iterator.h 1 Dec 2005 18:56:40 -0000 1.2 +++ reverse_iterator.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 1 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: algorithm =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/algorithm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- algorithm 29 Nov 2005 23:18:05 -0000 1.2 +++ algorithm 29 Dec 2005 19:29:49 -0000 1.3 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * Copyright (c) 1994 * Hewlett-Packard Company Index: set.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/set.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- set.h 29 Nov 2005 23:18:05 -0000 1.2 +++ set.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -2,7 +2,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: list =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/list,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- list 30 Nov 2005 21:46:34 -0000 1.3 +++ list 29 Dec 2005 19:29:49 -0000 1.4 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: vector =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/vector,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- vector 28 Dec 2005 19:43:08 -0000 1.5 +++ vector 29 Dec 2005 19:29:49 -0000 1.6 @@ -3,7 +3,7 @@ * MICO --- a free CORBA implementation * Copyright (C) 1997-98 Kay Roemer & Arno Puder * - * Copyright (C) 2005 Ewald Arnold mockpp at ewald-arnold dot de + * Copyright (C) 2005-2006 Ewald Arnold mockpp at ewald-arnold dot de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public Index: raw_iterator.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/raw_iterator.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- raw_iterator.h 1 Dec 2005 18:56:40 -0000 1.2 +++ raw_iterator.h 29 Dec 2005 19:29:49 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Dec 1 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify |
From: Ewald A. <ewa...@us...> - 2005-12-29 19:30:33
|
Update of /cvsroot/mockpp/mockpp/3party/ministl/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/3party/ministl/tests Modified Files: ministl_test.cpp Log Message: update copyright date Index: ministl_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/ministl/tests/ministl_test.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ministl_test.cpp 3 Dec 2005 13:09:19 -0000 1.6 +++ ministl_test.cpp 29 Dec 2005 19:29:50 -0000 1.7 @@ -3,7 +3,7 @@ - ------------------- begin : Tue Nov 28 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ |
Update of /cvsroot/mockpp/mockpp/mockpp/visiting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/visiting Modified Files: CountedVisitableMethod.h ResponseVector1.h ResponseVector2.h ResponseVector3.h ResponseVector4.h ResponseVector5.h ResponseVector6.h VisitableMockMethod.cpp VisitableMockMethod.h VisitableMockMethod0.h VisitableMockMethod1.h VisitableMockMethod2.h VisitableMockMethod3.h VisitableMockMethod4.h VisitableMockMethod5.h VisitableMockMethod6.h VisitableMockObject.cpp VisitableMockObject.h VisitableMockObject_macro.h VisitableMockObject_template.h gen_countvisitable_N.pl gen_responsevector_N.pl gen_visitablemethod_N.pl Log Message: update copyright date Index: ResponseVector3.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector3.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector3.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector3.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ResponseVector2.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector2.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector2.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector2.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockObject_macro.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockObject_macro.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- VisitableMockObject_macro.h 10 Dec 2005 19:20:00 -0000 1.1 +++ VisitableMockObject_macro.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Fri Feb 07 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_visitablemethod_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/gen_visitablemethod_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_visitablemethod_N.pl 10 Dec 2005 19:20:00 -0000 1.1 +++ gen_visitablemethod_N.pl 29 Dec 2005 19:29:52 -0000 1.2 @@ -30,7 +30,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: CountedVisitableMethod.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/CountedVisitableMethod.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- CountedVisitableMethod.h 10 Dec 2005 20:07:22 -0000 1.2 +++ CountedVisitableMethod.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod4.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod4.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod4.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod4.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_countvisitable_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/gen_countvisitable_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_countvisitable_N.pl 10 Dec 2005 19:19:59 -0000 1.1 +++ gen_countvisitable_N.pl 29 Dec 2005 19:29:52 -0000 1.2 @@ -34,7 +34,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod5.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod5.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod5.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod5.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod.cpp 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod.cpp 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Fri Oct 14 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_responsevector_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/gen_responsevector_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_responsevector_N.pl 10 Dec 2005 19:20:00 -0000 1.1 +++ gen_responsevector_N.pl 29 Dec 2005 19:29:52 -0000 1.2 @@ -30,7 +30,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod6.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod6.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod6.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod6.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ResponseVector4.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector4.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector4.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector4.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ResponseVector5.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector5.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector5.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector5.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod0.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod0.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod0.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod0.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ResponseVector6.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector6.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector6.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector6.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod1.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod1.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod1.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod1.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod2.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod2.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod2.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod2.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockObject_template.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockObject_template.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- VisitableMockObject_template.h 10 Dec 2005 19:20:00 -0000 1.1 +++ VisitableMockObject_template.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockObject.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockObject.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockObject.cpp 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockObject.cpp 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Fri Dec 18 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockMethod3.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockMethod3.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockMethod3.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockMethod3.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ResponseVector1.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/ResponseVector1.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResponseVector1.h 10 Dec 2005 19:20:00 -0000 1.1 +++ ResponseVector1.h 29 Dec 2005 19:29:52 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Feb 15 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: VisitableMockObject.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/visiting/VisitableMockObject.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- VisitableMockObject.h 10 Dec 2005 20:07:22 -0000 1.2 +++ VisitableMockObject.h 29 Dec 2005 19:29:52 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Fri Dec 18 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify |
Update of /cvsroot/mockpp/mockpp/mockpp/constraint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/constraint Modified Files: And.h Constraint.h ConstraintHolder.h ConstraintList.h ConstraintSet.cpp ConstraintSet.h ConstraintSetN.h IsAnything.cpp IsAnything.h IsCloseTo.h IsEqual.h IsGreaterOrEqual.h IsGreaterThan.h IsInstanceOf.h IsLessOrEqual.h IsLessThan.h IsNot.h IsNothing.cpp IsNothing.h IsSame.h Or.h OutBound.h StringContains.h StringEndsWith.h TypelessConstraint.cpp TypelessConstraint.h gen_constraintset_N.pl Log Message: update copyright date Index: IsAnything.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsAnything.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IsAnything.cpp 30 Dec 2004 20:54:04 -0000 1.2 +++ IsAnything.cpp 29 Dec 2005 19:29:51 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ConstraintList.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintList.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ConstraintList.h 26 Nov 2005 17:57:00 -0000 1.7 +++ ConstraintList.h 29 Dec 2005 19:29:51 -0000 1.8 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Feb 26 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsGreaterOrEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsGreaterOrEqual.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsGreaterOrEqual.h 6 Jan 2005 13:09:22 -0000 1.11 +++ IsGreaterOrEqual.h 29 Dec 2005 19:29:51 -0000 1.12 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: OutBound.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/OutBound.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- OutBound.h 23 Jul 2005 13:31:57 -0000 1.1 +++ OutBound.h 29 Dec 2005 19:29:51 -0000 1.2 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Jul 22 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: StringContains.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/StringContains.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- StringContains.h 6 Jan 2005 13:09:22 -0000 1.16 +++ StringContains.h 29 Dec 2005 19:29:51 -0000 1.17 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsGreaterThan.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsGreaterThan.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- IsGreaterThan.h 6 Jan 2005 13:09:22 -0000 1.15 +++ IsGreaterThan.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_constraintset_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/gen_constraintset_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_constraintset_N.pl 29 Oct 2005 18:16:22 -0000 1.1 +++ gen_constraintset_N.pl 29 Dec 2005 19:29:51 -0000 1.2 @@ -28,7 +28,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsNot.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsNot.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- IsNot.h 6 Jan 2005 13:09:22 -0000 1.19 +++ IsNot.h 29 Dec 2005 19:29:51 -0000 1.20 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: TypelessConstraint.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/TypelessConstraint.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- TypelessConstraint.cpp 4 Mar 2005 23:35:56 -0000 1.1 +++ TypelessConstraint.cpp 29 Dec 2005 19:29:51 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Oct 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsAnything.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsAnything.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- IsAnything.h 6 Jan 2005 13:09:22 -0000 1.19 +++ IsAnything.h 29 Dec 2005 19:29:51 -0000 1.20 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsEqual.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- IsEqual.h 1 Oct 2005 16:25:00 -0000 1.21 +++ IsEqual.h 29 Dec 2005 19:29:51 -0000 1.22 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: TypelessConstraint.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/TypelessConstraint.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- TypelessConstraint.h 24 Mar 2005 20:51:29 -0000 1.8 +++ TypelessConstraint.h 29 Dec 2005 19:29:51 -0000 1.9 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Oct 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ConstraintSet.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintSet.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ConstraintSet.h 29 Oct 2005 18:16:22 -0000 1.16 +++ ConstraintSet.h 29 Dec 2005 19:29:51 -0000 1.17 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Constraint.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/Constraint.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Constraint.h 4 Mar 2005 23:35:56 -0000 1.7 +++ Constraint.h 29 Dec 2005 19:29:51 -0000 1.8 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsCloseTo.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsCloseTo.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- IsCloseTo.h 14 Nov 2005 17:24:09 -0000 1.18 +++ IsCloseTo.h 29 Dec 2005 19:29:51 -0000 1.19 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsLessThan.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsLessThan.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- IsLessThan.h 6 Jan 2005 13:09:22 -0000 1.15 +++ IsLessThan.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsNothing.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsNothing.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- IsNothing.h 6 Jan 2005 13:09:22 -0000 1.17 +++ IsNothing.h 29 Dec 2005 19:29:51 -0000 1.18 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsSame.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsSame.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- IsSame.h 23 Sep 2005 21:32:38 -0000 1.20 +++ IsSame.h 29 Dec 2005 19:29:51 -0000 1.21 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsLessOrEqual.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsLessOrEqual.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- IsLessOrEqual.h 30 Jan 2005 12:09:18 -0000 1.12 +++ IsLessOrEqual.h 29 Dec 2005 19:29:51 -0000 1.13 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: StringEndsWith.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/StringEndsWith.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- StringEndsWith.h 6 Jan 2005 13:09:22 -0000 1.2 +++ StringEndsWith.h 29 Dec 2005 19:29:51 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Wed Jan 05 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsInstanceOf.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsInstanceOf.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- IsInstanceOf.h 27 Nov 2005 15:34:36 -0000 1.18 +++ IsInstanceOf.h 29 Dec 2005 19:29:51 -0000 1.19 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: IsNothing.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsNothing.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IsNothing.cpp 30 Dec 2004 20:54:04 -0000 1.2 +++ IsNothing.cpp 29 Dec 2005 19:29:51 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Or.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/Or.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Or.h 6 Jan 2005 13:09:22 -0000 1.18 +++ Or.h 29 Dec 2005 19:29:51 -0000 1.19 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: And.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/And.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- And.h 30 Dec 2004 20:54:04 -0000 1.20 +++ And.h 29 Dec 2005 19:29:51 -0000 1.21 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ConstraintSet.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintSet.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ConstraintSet.cpp 4 Mar 2005 23:35:56 -0000 1.1 +++ ConstraintSet.cpp 29 Dec 2005 19:29:51 -0000 1.2 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ConstraintSetN.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintSetN.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ConstraintSetN.h 13 Nov 2005 11:53:18 -0000 1.5 +++ ConstraintSetN.h 29 Dec 2005 19:29:51 -0000 1.6 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ConstraintHolder.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintHolder.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ConstraintHolder.h 25 Mar 2005 18:43:33 -0000 1.8 +++ ConstraintHolder.h 29 Dec 2005 19:29:51 -0000 1.9 @@ -1,104 +1,104 @@ -/** @file - @internal - @brief Container helper for constraint objects. - - $Id$ - - ***************************************************************************/ - -/************************************************************************** - - begin : Sun Oct 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold - email : mockpp at ewald-arnold dot de - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2 of the License, - or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - **/ - -#ifndef MOCKPP_CONSTRAINTHOLDER_H -#define MOCKPP_CONSTRAINTHOLDER_H - -#include <mockpp/util/AutoPointer.h> - -#include <mockpp/mockpp.h> // always first - -#include <mockpp/constraint/Constraint.h> -#include <mockpp/constraint/TypelessConstraint.h> - - -namespace mockpp { - - -/** Proxy class to conveniently move constraints into constraint sets. - * @internal - * @attention Not intended for common use since this class is actually a liar. - */ -template <typename T> -class ConstraintHolder -{ - public: - - /** Constructs the object. - * @param in_constraint pointer to the constraint - */ - ConstraintHolder(Constraint<T> *in_constraint) - : constraint(in_constraint) - {} - - /** Constructs the object. - * @param in_constraint pointer to the typeless constraint - */ - ConstraintHolder(const typename TypelessConstraint::AP &in_constraint) - : constraint(new TypelessConstraintAdapter<T>(in_constraint)) - {} - - /** Constructs the object. - * @param in_constraint pointer to the typeless constraint - */ - ConstraintHolder(TypelessConstraint *in_constraint) - : constraint(new TypelessConstraintAdapter<T>(in_constraint)) - {} - - /** Constructs the object. - * @param in_constraint pointer to the constraint - */ - ConstraintHolder(const typename Constraint<T>::AP &in_constraint) - : constraint(in_constraint) - {} - - /** Returns the constraint object. - * @attention After this method is called this object becomes invalid. - * @return the costraint object - */ -#if defined(__BORLANDC__) && (__BORLANDC__ >= 560) - operator typename AutoPointer<Constraint<T> > () const // we actually lie a bit -#else - operator typename Constraint<T>::AP () const -#endif - { - return constraint; - } - - private: - - mutable typename Constraint<T>::AP constraint; // we actually lie a bit -}; - - -} // namespace mockpp - - -#endif // MOCKPP_CONSTRAINTHOLDER_H +/** @file + @internal + @brief Container helper for constraint objects. + + $Id$ + + ***************************************************************************/ + +/************************************************************************** + + begin : Sun Oct 24 2004 + copyright : (C) 2002-2006 by Ewald Arnold + email : mockpp at ewald-arnold dot de + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + **/ + +#ifndef MOCKPP_CONSTRAINTHOLDER_H +#define MOCKPP_CONSTRAINTHOLDER_H + +#include <mockpp/util/AutoPointer.h> + +#include <mockpp/mockpp.h> // always first + +#include <mockpp/constraint/Constraint.h> +#include <mockpp/constraint/TypelessConstraint.h> + + +namespace mockpp { + + +/** Proxy class to conveniently move constraints into constraint sets. + * @internal + * @attention Not intended for common use since this class is actually a liar. + */ +template <typename T> +class ConstraintHolder +{ + public: + + /** Constructs the object. + * @param in_constraint pointer to the constraint + */ + ConstraintHolder(Constraint<T> *in_constraint) + : constraint(in_constraint) + {} + + /** Constructs the object. + * @param in_constraint pointer to the typeless constraint + */ + ConstraintHolder(const typename TypelessConstraint::AP &in_constraint) + : constraint(new TypelessConstraintAdapter<T>(in_constraint)) + {} + + /** Constructs the object. + * @param in_constraint pointer to the typeless constraint + */ + ConstraintHolder(TypelessConstraint *in_constraint) + : constraint(new TypelessConstraintAdapter<T>(in_constraint)) + {} + + /** Constructs the object. + * @param in_constraint pointer to the constraint + */ + ConstraintHolder(const typename Constraint<T>::AP &in_constraint) + : constraint(in_constraint) + {} + + /** Returns the constraint object. + * @attention After this method is called this object becomes invalid. + * @return the costraint object + */ +#if defined(__BORLANDC__) && (__BORLANDC__ >= 560) + operator typename AutoPointer<Constraint<T> > () const // we actually lie a bit +#else + operator typename Constraint<T>::AP () const +#endif + { + return constraint; + } + + private: + + mutable typename Constraint<T>::AP constraint; // we actually lie a bit +}; + + +} // namespace mockpp + + +#endif // MOCKPP_CONSTRAINTHOLDER_H |
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/chaining Modified Files: AbstractDynamicChainingMock.h AbstractInvocationDispatcher.h ChainableMockMethod.h ChainableMockMethod0.h ChainableMockMethod1.h ChainableMockMethod2.h ChainableMockMethod3.h ChainableMockMethod4.h ChainableMockMethod5.h ChainableMockMethod6.h ChainableMockObject.cpp ChainableMockObject.h ChainableMockObject_macro.h ChainingMockBuilder.h ChainingMockObjectSupport.cpp ChainingMockObjectSupport.h CoreMock.h CountedChainableMethod.h DynamicChainingMock.h DynamicChainingMockError.h FIFOInvocationDispatcher.h Invocation.cpp Invocation.h InvocationDispatcher.h InvocationMocker.h InvocationN.h Invokable.h LIFOInvocationDispatcher.h StubMatchersCollection.h gen_chainablemethod_N.pl gen_countchainable_N.pl gen_invocation_N.pl mockpp_pti.h Log Message: update copyright date Index: ChainableMockMethod6.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod6.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- ChainableMockMethod6.h 10 Dec 2005 20:07:21 -0000 1.10 +++ ChainableMockMethod6.h 29 Dec 2005 19:29:50 -0000 1.11 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: FIFOInvocationDispatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/FIFOInvocationDispatcher.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- FIFOInvocationDispatcher.h 3 Apr 2005 21:49:57 -0000 1.14 +++ FIFOInvocationDispatcher.h 29 Dec 2005 19:29:50 -0000 1.15 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod3.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod3.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod3.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod3.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: CountedChainableMethod.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/CountedChainableMethod.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- CountedChainableMethod.h 26 Nov 2005 18:34:16 -0000 1.5 +++ CountedChainableMethod.h 29 Dec 2005 19:29:50 -0000 1.6 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod4.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod4.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod4.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod4.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: CoreMock.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/CoreMock.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- CoreMock.h 16 Oct 2005 12:10:55 -0000 1.16 +++ CoreMock.h 29 Dec 2005 19:29:50 -0000 1.17 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockObject.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockObject.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChainableMockObject.cpp 10 Dec 2005 20:07:21 -0000 1.2 +++ ChainableMockObject.cpp 29 Dec 2005 19:29:50 -0000 1.3 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockObject.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockObject.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChainableMockObject.h 10 Dec 2005 19:18:50 -0000 1.1 +++ ChainableMockObject.h 29 Dec 2005 19:29:50 -0000 1.2 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod0.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod0.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod0.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod0.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod1.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod1.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod1.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod1.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ChainableMockMethod.h 10 Dec 2005 20:07:21 -0000 1.13 +++ ChainableMockMethod.h 29 Dec 2005 19:29:50 -0000 1.14 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod5.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod5.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod5.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod5.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockMethod2.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockMethod2.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ChainableMockMethod2.h 10 Dec 2005 20:07:21 -0000 1.12 +++ ChainableMockMethod2.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Invocation.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/Invocation.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Invocation.h 27 Oct 2005 18:54:01 -0000 1.18 +++ Invocation.h 29 Dec 2005 19:29:50 -0000 1.19 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Aug 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: Invocation.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/Invocation.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Invocation.cpp 1 Oct 2005 16:24:08 -0000 1.5 +++ Invocation.cpp 29 Dec 2005 19:29:50 -0000 1.6 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Oct 23 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvocationN.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationN.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- InvocationN.h 13 Nov 2005 11:53:18 -0000 1.7 +++ InvocationN.h 29 Dec 2005 19:29:50 -0000 1.8 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Aug 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainingMockObjectSupport.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainingMockObjectSupport.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ChainingMockObjectSupport.h 27 Nov 2005 15:34:36 -0000 1.23 +++ ChainingMockObjectSupport.h 29 Dec 2005 19:29:50 -0000 1.24 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de Index: Invokable.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/Invokable.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Invokable.h 30 Dec 2004 20:54:04 -0000 1.7 +++ Invokable.h 29 Dec 2005 19:29:50 -0000 1.8 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainingMockBuilder.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainingMockBuilder.h,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- ChainingMockBuilder.h 26 Nov 2005 17:56:30 -0000 1.26 +++ ChainingMockBuilder.h 29 Dec 2005 19:29:50 -0000 1.27 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvocationDispatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationDispatcher.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- InvocationDispatcher.h 13 Nov 2005 11:53:18 -0000 1.10 +++ InvocationDispatcher.h 29 Dec 2005 19:29:50 -0000 1.11 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainingMockObjectSupport.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainingMockObjectSupport.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ChainingMockObjectSupport.cpp 3 Mar 2005 23:32:23 -0000 1.5 +++ ChainingMockObjectSupport.cpp 29 Dec 2005 19:29:50 -0000 1.6 @@ -8,7 +8,7 @@ /************************************************************************** begin : Fri Sep 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de Index: AbstractInvocationDispatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/AbstractInvocationDispatcher.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- AbstractInvocationDispatcher.h 26 Nov 2005 17:56:30 -0000 1.17 +++ AbstractInvocationDispatcher.h 29 Dec 2005 19:29:50 -0000 1.18 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvocationMocker.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/InvocationMocker.h,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- InvocationMocker.h 27 Nov 2005 17:27:57 -0000 1.37 +++ InvocationMocker.h 29 Dec 2005 19:29:50 -0000 1.38 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_invocation_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/gen_invocation_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_invocation_N.pl 27 Oct 2005 18:54:01 -0000 1.1 +++ gen_invocation_N.pl 29 Dec 2005 19:29:50 -0000 1.2 @@ -28,7 +28,7 @@ /************************************************************************** begin : Thu Aug 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: LIFOInvocationDispatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/LIFOInvocationDispatcher.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- LIFOInvocationDispatcher.h 3 Apr 2005 21:49:57 -0000 1.14 +++ LIFOInvocationDispatcher.h 29 Dec 2005 19:29:50 -0000 1.15 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: mockpp_pti.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/mockpp_pti.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- mockpp_pti.h 4 Apr 2005 08:57:33 -0000 1.8 +++ mockpp_pti.h 29 Dec 2005 19:29:50 -0000 1.9 @@ -8,7 +8,7 @@ /************************************************************************** begin : Wed Jan 12 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_countchainable_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/gen_countchainable_N.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- gen_countchainable_N.pl 26 Nov 2005 18:34:16 -0000 1.4 +++ gen_countchainable_N.pl 29 Dec 2005 19:29:50 -0000 1.5 @@ -29,7 +29,7 @@ /************************************************************************** begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ChainableMockObject_macro.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/ChainableMockObject_macro.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ChainableMockObject_macro.h 26 Nov 2005 17:56:30 -0000 1.14 +++ ChainableMockObject_macro.h 29 Dec 2005 19:29:50 -0000 1.15 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: DynamicChainingMockError.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/DynamicChainingMockError.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- DynamicChainingMockError.h 30 Dec 2004 20:54:04 -0000 1.6 +++ DynamicChainingMockError.h 29 Dec 2005 19:29:50 -0000 1.7 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: StubMatchersCollection.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/StubMatchersCollection.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- StubMatchersCollection.h 30 Jan 2005 12:09:18 -0000 1.13 +++ StubMatchersCollection.h 29 Dec 2005 19:29:50 -0000 1.14 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: AbstractDynamicChainingMock.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/AbstractDynamicChainingMock.h,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- AbstractDynamicChainingMock.h 23 Dec 2005 22:03:30 -0000 1.39 +++ AbstractDynamicChainingMock.h 29 Dec 2005 19:29:50 -0000 1.40 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: gen_chainablemethod_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/gen_chainablemethod_N.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gen_chainablemethod_N.pl 24 Nov 2005 19:17:09 -0000 1.8 +++ gen_chainablemethod_N.pl 29 Dec 2005 19:29:50 -0000 1.9 @@ -30,7 +30,7 @@ /************************************************************************** begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: DynamicChainingMock.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/DynamicChainingMock.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- DynamicChainingMock.h 26 Nov 2005 17:56:30 -0000 1.12 +++ DynamicChainingMock.h 29 Dec 2005 19:29:50 -0000 1.13 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify |
Update of /cvsroot/mockpp/mockpp/mockpp/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/tests Modified Files: AbstractDynamicChainingMock_test.cpp AbstractInvocationDispatcher_test.cpp And_test.cpp AnyArgumentsMatcher_test.cpp ArgumentsMatchBuilder_test.cpp ArgumentsMatcher_test.cpp AssertMo_test.cpp Assert_test.cpp ChainableMockMethod_1_test.cpp ChainableMockMethod_2_test.cpp ChainableMockMethod_test.cpp ChainableMockObjectPolymorphism_test.cpp ChainableMockObject_1_test.cpp ChainableMockObject_1_void_test.cpp ChainableMockObject_2_test.cpp ChainableMockObject_2_void_test.cpp ChainableMockObject_3_void_test.cpp ChainableMockObject_4_test.cpp ChainableMockObject_4_void_test.cpp ChainableMockObject_5_test.cpp ChainableMockObject_5_void_test.cpp ChainableMockObject_test.cpp ChainableMockObject_void_test.cpp ChainingMockBuilder_test.cpp ChainingMockObjectSupport_test.cpp ConstraintList_test.cpp ConstraintSet_test.cpp CoreMock_test.cpp CustomStub_test.cpp DefaultResultStub_test.cpp DynamicChainingMockError_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 FIFOInvocationDispatcher_test.cpp Formatter_test.cpp IncCounter.h InvocationMockerBuilder_test.cpp InvocationMocker_test.cpp Invocation_test.cpp InvokeAtLeastMatcher_test.cpp InvokeAtLeastOnceMatcher_test.cpp InvokeAtMostMatcher_test.cpp InvokeCountMatcher_test.cpp InvokeOnceMatcher_test.cpp InvokedAfterMatcher_test.cpp InvokedBeforeMatcher_test.cpp InvokedRecorder_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 LIFOInvocationDispatcher_test.cpp MatchBuilder_test.cpp MixedMockObject_5_test.cpp MockObject_test.cpp MyBuilderNamespace.h MyMatchBuilder.h NoArgumentsMatcher_test.cpp NoException_test.cpp Or_test.cpp OutBound_test.cpp ResponseVector_test.cpp ReturnObjectList_test.cpp ReturnStub_test.cpp StringContains_test.cpp StringEndsWith_test.cpp StringStartsWith_test.cpp StubBuilder_test.cpp StubSequence_test.cpp TestFailureMatcher_test.cpp TestFailureStub_test.cpp ThrowStub_test.cpp ThrowableList_test.cpp Throwable_test.cpp TimeServer_test.cpp TrackingCounter_test.cpp TypelessStubSequence_test.cpp UnlimitedMatcher_test.cpp Verifiable_test.cpp VerifyingTestCaller_test.cpp VerifyingTestCase_test.cpp VisitableMockMethod_1_test.cpp VisitableMockMethod_2_test.cpp VisitableMockMethod_test.cpp VisitableMockObject_1_test.cpp VisitableMockObject_1_void_test.cpp VisitableMockObject_2_test.cpp VisitableMockObject_2_void_test.cpp VisitableMockObject_3_test.cpp VisitableMockObject_3_void_test.cpp VisitableMockObject_4_test.cpp VisitableMockObject_4_void_test.cpp VisitableMockObject_5_test.cpp VisitableMockObject_5_void_test.cpp VisitableMockObject_template_test.cpp VisitableMockObject_test.cpp VisitableMockObject_void_test.cpp VoidStub_test.cpp classes_ABCDE.cpp classes_ABCDE.h mock_test.cpp mockpp_pti_test.cpp mockpp_test.cpp readability_test.cpp Log Message: update copyright date Index: readability_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/readability_test.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- readability_test.cpp 28 Nov 2005 19:03:09 -0000 1.5 +++ readability_test.cpp 29 Dec 2005 19:29:52 -0000 1.6 @@ -2,7 +2,7 @@ readability_test.cpp - visually check readability of output ------------------- begin : Sat Apr 09 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Or_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Or_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Or_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 +++ Or_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 @@ -2,7 +2,7 @@ Or_test.cpp - unit tests for Or class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: TestFailureMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/TestFailureMatcher_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- TestFailureMatcher_test.cpp 28 Dec 2005 21:29:21 -0000 1.13 +++ TestFailureMatcher_test.cpp 29 Dec 2005 19:29:52 -0000 1.14 @@ -2,7 +2,7 @@ TestFailureMatcher_test.cpp - unit tests for TestFailureMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: DynamicChainingMockError_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/DynamicChainingMockError_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- DynamicChainingMockError_test.cpp 28 Dec 2005 09:23:30 -0000 1.18 +++ DynamicChainingMockError_test.cpp 29 Dec 2005 19:29:51 -0000 1.19 @@ -2,7 +2,7 @@ DynamicChainingMockError_test.cpp - unit tests for DynamicChainingMockError class ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: AbstractDynamicChainingMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractDynamicChainingMock_test.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- AbstractDynamicChainingMock_test.cpp 28 Dec 2005 09:23:30 -0000 1.36 +++ AbstractDynamicChainingMock_test.cpp 29 Dec 2005 19:29:51 -0000 1.37 @@ -2,7 +2,7 @@ AbstractDynamicChainingMock_test.cpp - unit tests for AbstractDynamicChainingMock class ------------------- begin : Wed Sep 1 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: IsInstanceOf_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsInstanceOf_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- IsInstanceOf_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 +++ IsInstanceOf_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 @@ -2,7 +2,7 @@ IsInstanceOf_test.cpp - unit tests for IsInstanceOf class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationList_test.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- ExpectationList_test.cpp 28 Dec 2005 21:29:21 -0000 1.21 +++ ExpectationList_test.cpp 29 Dec 2005 19:29:51 -0000 1.22 @@ -2,7 +2,7 @@ ExpectationList_test.cpp - unit tests for ExpectationList class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: IsLessThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessThan_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsLessThan_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 +++ IsLessThan_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 @@ -2,7 +2,7 @@ IsLessThan_test.cpp - unit tests for IsLessThan class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationMap_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationMap_test.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- ExpectationMap_test.cpp 28 Dec 2005 21:29:21 -0000 1.21 +++ ExpectationMap_test.cpp 29 Dec 2005 19:29:51 -0000 1.22 @@ -2,7 +2,7 @@ ExpectationMap_test.cpp - unit tests for ExpectationMap class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: CustomStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CustomStub_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- CustomStub_test.cpp 28 Dec 2005 21:29:20 -0000 1.15 +++ CustomStub_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 @@ -2,7 +2,7 @@ CustomStub_test.cpp - unit tests for CustomStub class ------------------- begin : Wed 25 Aug 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_test.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- VisitableMockObject_test.cpp 28 Dec 2005 09:23:31 -0000 1.29 +++ VisitableMockObject_test.cpp 29 Dec 2005 19:29:52 -0000 1.30 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 0 parameter methods ------------------- begin : Sam Feb 8 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Assert_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Assert_test.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- Assert_test.cpp 28 Dec 2005 21:29:20 -0000 1.23 +++ Assert_test.cpp 29 Dec 2005 19:29:51 -0000 1.24 @@ -2,7 +2,7 @@ Assert_test.cpp - unit tests for Assert class ------------------- begin : Fri Dez 27 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: IsLessOrEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsLessOrEqual_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsLessOrEqual_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 +++ IsLessOrEqual_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 @@ -2,7 +2,7 @@ IsLessOrEqual_test.cpp - unit tests for IsLessOrEqual class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: MixedMockObject_5_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MixedMockObject_5_test.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- MixedMockObject_5_test.cpp 28 Dec 2005 09:23:31 -0000 1.10 +++ MixedMockObject_5_test.cpp 29 Dec 2005 19:29:51 -0000 1.11 @@ -4,7 +4,7 @@ unit tests for MixedMockObject class and 5 parameter methods ------------------- begin : Sat Mar 05 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_test.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- ChainableMockObject_test.cpp 28 Dec 2005 09:23:30 -0000 1.28 +++ ChainableMockObject_test.cpp 29 Dec 2005 19:29:51 -0000 1.29 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 0 parameter methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Invocation_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Invocation_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- Invocation_test.cpp 28 Dec 2005 21:29:21 -0000 1.24 +++ Invocation_test.cpp 29 Dec 2005 19:29:51 -0000 1.25 @@ -2,7 +2,7 @@ Invocation_test.cpp - unit tests for Invocation class ------------------- begin : Sat 27 Aug 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: IsGreaterThan_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsGreaterThan_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsGreaterThan_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 +++ IsGreaterThan_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 @@ -2,7 +2,7 @@ IsGreaterThan_test.cpp - unit tests for IsGreaterThan class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: MyBuilderNamespace.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MyBuilderNamespace.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- MyBuilderNamespace.h 26 Nov 2005 17:57:48 -0000 1.15 +++ MyBuilderNamespace.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -2,7 +2,7 @@ MyBuilderNamespace.h - helper class for common use in tests ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_4_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_4_void_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockObject_4_void_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ChainableMockObject_4_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 4 parameter void methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvocationMockerBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvocationMockerBuilder_test.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- InvocationMockerBuilder_test.cpp 28 Dec 2005 09:23:31 -0000 1.33 +++ InvocationMockerBuilder_test.cpp 29 Dec 2005 19:29:51 -0000 1.34 @@ -2,7 +2,7 @@ InvocationMockerBuilder_test.cpp - unit tests for InvocationMockerBuilder class ------------------- begin : Wed Sep 1 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: StringContains_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringContains_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- StringContains_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 +++ StringContains_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 @@ -2,7 +2,7 @@ StringContains_test.cpp - unit tests for StringContains class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvokeAtLeastOnceMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeAtLeastOnceMatcher_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- InvokeAtLeastOnceMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ InvokeAtLeastOnceMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 @@ -2,7 +2,7 @@ InvokeAtLeastOnceMatcher_test.cpp - unit tests for InvokeAtLeastOnceMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationSet_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationSet_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ExpectationSet_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 +++ ExpectationSet_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 @@ -2,7 +2,7 @@ ExpectationSet_test.cpp - unit tests for ExpectationSet class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_1_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_1_void_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChainableMockObject_1_void_test.cpp 28 Dec 2005 09:23:30 -0000 1.19 +++ ChainableMockObject_1_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.20 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 1 parameter void methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockMethod_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_2_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ChainableMockMethod_2_test.cpp 28 Dec 2005 09:23:30 -0000 1.13 +++ ChainableMockMethod_2_test.cpp 29 Dec 2005 19:29:51 -0000 1.14 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 2 parameter methods ------------------- begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvokedAfterMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokedAfterMatcher_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- InvokedAfterMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ InvokedAfterMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 @@ -2,7 +2,7 @@ InvokedAfterMatcher_test.cpp - unit tests for InvokedAfterMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvokeOnceMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeOnceMatcher_test.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- InvokeOnceMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.12 +++ InvokeOnceMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.13 @@ -2,7 +2,7 @@ InvokeOnceMatcher_test_test.cpp - unit tests for InvokeOnceMatcher_test class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_3_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_3_void_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockObject_3_void_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ChainableMockObject_3_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 4 parameter void methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VoidStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VoidStub_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- VoidStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.15 +++ VoidStub_test.cpp 29 Dec 2005 19:29:52 -0000 1.16 @@ -2,7 +2,7 @@ VoidStub_test.cpp - unit tests for VoidStub class ------------------- begin : Wed 25 Aug 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationCounter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationCounter_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ExpectationCounter_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 +++ ExpectationCounter_test.cpp 29 Dec 2005 19:29:51 -0000 1.19 @@ -2,7 +2,7 @@ ExpectationCounter_test.cpp - unit tests for ExpectationCounter class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: OutBound_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/OutBound_test.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- OutBound_test.cpp 28 Dec 2005 09:23:31 -0000 1.5 +++ OutBound_test.cpp 29 Dec 2005 19:29:51 -0000 1.6 @@ -2,7 +2,7 @@ OutBound_test.cpp - unit tests for OutBound class ------------------- begin : Sat Jul 23 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ResponseVector_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ResponseVector_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ResponseVector_test.cpp 28 Dec 2005 09:23:31 -0000 1.9 +++ ResponseVector_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 @@ -2,7 +2,7 @@ ResponseVector_Test.cpp - unit tests for ResponseVector classes ------------------- begin : Sun Oct 30 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationConglomeration_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationConglomeration_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ExpectationConglomeration_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 +++ ExpectationConglomeration_test.cpp 29 Dec 2005 19:29:51 -0000 1.18 @@ -2,7 +2,7 @@ ExpectationConglomeration_test.cpp - unit tests for ExpectationConglomeration class ------------------- begin : Sat Aug 14 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: classes_ABCDE.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/classes_ABCDE.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- classes_ABCDE.cpp 29 Jan 2005 18:11:04 -0000 1.5 +++ classes_ABCDE.cpp 29 Dec 2005 19:29:52 -0000 1.6 @@ -2,7 +2,7 @@ classes_ABCDE - provide some classes for testing purposes ------------------- begin : Sat Sep 25 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvokeAtMostMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeAtMostMatcher_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- InvokeAtMostMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.11 +++ InvokeAtMostMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 @@ -2,7 +2,7 @@ InvokeAtMostMatcher_test.cpp - unit tests for InvokeAtMostMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_4_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_4_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- VisitableMockObject_4_test.cpp 28 Dec 2005 09:23:31 -0000 1.24 +++ VisitableMockObject_4_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 4 parameter methods ------------------- begin : Mit Feb 19 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_3_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_3_void_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- VisitableMockObject_3_void_test.cpp 28 Dec 2005 09:23:31 -0000 1.24 +++ VisitableMockObject_3_void_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 4 parameter void methods ------------------- begin : Die Feb 18 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: StubSequence_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StubSequence_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- StubSequence_test.cpp 28 Dec 2005 09:23:31 -0000 1.19 +++ StubSequence_test.cpp 29 Dec 2005 19:29:52 -0000 1.20 @@ -2,7 +2,7 @@ StubSequence_test.cpp - unit tests for StubSequence class ------------------- begin : Sat Sep 18 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: MatchBuilder_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/MatchBuilder_test.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- MatchBuilder_test.cpp 28 Dec 2005 21:29:21 -0000 1.26 +++ MatchBuilder_test.cpp 29 Dec 2005 19:29:51 -0000 1.27 @@ -2,7 +2,7 @@ MatchBuilder_test.cpp - unit tests for MatchBuilder class ------------------- begin : Sat Sep 20 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_2_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_2_void_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockObject_2_void_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ChainableMockObject_2_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 2 parameter void methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_void_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockObject_void_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ChainableMockObject_void_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -6,7 +6,7 @@ ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: NoArgumentsMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoArgumentsMatcher_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- NoArgumentsMatcher_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 +++ NoArgumentsMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.15 @@ -2,7 +2,7 @@ NoArgumentsMatcher_test.cpp - unit tests for NoArgumentsMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Exception_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Exception_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- Exception_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 +++ Exception_test.cpp 29 Dec 2005 19:29:51 -0000 1.18 @@ -2,7 +2,7 @@ Exception_test.cpp - unit tests for Exception class ------------------- begin : Wed Jan 1 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainingMockObjectSupport_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainingMockObjectSupport_test.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- ChainingMockObjectSupport_test.cpp 28 Dec 2005 09:23:30 -0000 1.37 +++ ChainingMockObjectSupport_test.cpp 29 Dec 2005 19:29:51 -0000 1.38 @@ -3,7 +3,7 @@ ChainingMockObjectSupport_test.cpp - unit tests for ChainingMockObjectSupport ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: LIFOInvocationDispatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/LIFOInvocationDispatcher_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- LIFOInvocationDispatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.22 +++ LIFOInvocationDispatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.23 @@ -2,7 +2,7 @@ LIFOInvocationDispatcher_test.cpp - unit tests for LIFOInvocationDispatcher class ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: NoException_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/NoException_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- NoException_test.cpp 29 Dec 2005 12:07:57 -0000 1.9 +++ NoException_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 @@ -2,7 +2,7 @@ NoException_test.cpp - unit tests for tests with disabled exceptions ------------------- begin : Wed Dec 7 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_template_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_template_test.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- VisitableMockObject_template_test.cpp 28 Dec 2005 09:23:31 -0000 1.13 +++ VisitableMockObject_template_test.cpp 29 Dec 2005 19:29:52 -0000 1.14 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject templates ------------------- begin : Son Feb 16 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockMethod_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_1_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- VisitableMockMethod_1_test.cpp 28 Dec 2005 09:23:31 -0000 1.9 +++ VisitableMockMethod_1_test.cpp 29 Dec 2005 19:29:52 -0000 1.10 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 1 parameter methods ------------------- begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_4_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_4_void_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- VisitableMockObject_4_void_test.cpp 28 Dec 2005 09:23:31 -0000 1.24 +++ VisitableMockObject_4_void_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 4 parameter void methods ------------------- begin : Die Feb 18 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ReturnObjectList_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ReturnObjectList_test.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- ReturnObjectList_test.cpp 28 Dec 2005 09:23:31 -0000 1.20 +++ ReturnObjectList_test.cpp 29 Dec 2005 19:29:51 -0000 1.21 @@ -2,7 +2,7 @@ ReturnObjectList_test.cpp - unit tests for ReturnObjectList class ------------------- begin : Fri Dez 27 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: StringStartsWith_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/StringStartsWith_test.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- StringStartsWith_test.cpp 28 Dec 2005 21:29:21 -0000 1.8 +++ StringStartsWith_test.cpp 29 Dec 2005 19:29:52 -0000 1.9 @@ -2,7 +2,7 @@ StringStartsWith_test.cpp - unit tests for StringStartsWith class ------------------- begin : Wed Jan 05 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_3_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_3_test.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- VisitableMockObject_3_test.cpp 28 Dec 2005 09:23:31 -0000 1.24 +++ VisitableMockObject_3_test.cpp 29 Dec 2005 19:29:52 -0000 1.25 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 3 parameter methods ------------------- begin : Mit Feb 19 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObjectPolymorphism_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObjectPolymorphism_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ChainableMockObjectPolymorphism_test.cpp 28 Dec 2005 09:23:30 -0000 1.9 +++ ChainableMockObjectPolymorphism_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 @@ -4,7 +4,7 @@ unit tests for MockVisitor class and polymorphic parameter methods ------------------- begin : Tue Sep 20 2005 - copyright : (C) 2005 contributed by Mathieu Champlon + copyright : (C) 2005-2006 contributed by Mathieu Champlon email : mockpp at ewald-arnold dot de $Id$ Index: IsGreaterOrEqual_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/IsGreaterOrEqual_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- IsGreaterOrEqual_test.cpp 28 Dec 2005 21:29:21 -0000 1.11 +++ IsGreaterOrEqual_test.cpp 29 Dec 2005 19:29:51 -0000 1.12 @@ -2,7 +2,7 @@ IsGreaterOrEqual_test.cpp - unit tests for IsGreaterOrEqual class ------------------- begin : Sat Aug 21 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: mockpp_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/mockpp_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- mockpp_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 +++ mockpp_test.cpp 29 Dec 2005 19:29:52 -0000 1.19 @@ -2,7 +2,7 @@ mockpp_test.cpp - unit tests for global mockpp functions ------------------- begin : Fri Dez 27 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Throwable_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Throwable_test.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Throwable_test.cpp 28 Dec 2005 21:29:21 -0000 1.19 +++ Throwable_test.cpp 29 Dec 2005 19:29:52 -0000 1.20 @@ -2,7 +2,7 @@ Throwable_test.cpp - unit tests for Throwable class ------------------- begin : Fri Dez 27 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_2_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- ChainableMockObject_2_test.cpp 28 Dec 2005 09:23:30 -0000 1.15 +++ ChainableMockObject_2_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 2 parameter methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: UnlimitedMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/UnlimitedMatcher_test.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- UnlimitedMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.7 +++ UnlimitedMatcher_test.cpp 29 Dec 2005 19:29:52 -0000 1.8 @@ -2,7 +2,7 @@ UnlimitedMatcher_test.cpp - unit tests for UnlimitedMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: CoreMock_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/CoreMock_test.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- CoreMock_test.cpp 28 Dec 2005 09:23:30 -0000 1.26 +++ CoreMock_test.cpp 29 Dec 2005 19:29:51 -0000 1.27 @@ -2,7 +2,7 @@ CoreMock_test.cpp - unit tests for CoreMock class ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_4_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_4_test.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- ChainableMockObject_4_test.cpp 28 Dec 2005 09:23:30 -0000 1.15 +++ ChainableMockObject_4_test.cpp 29 Dec 2005 19:29:51 -0000 1.16 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 4 parameter methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: mockpp_pti_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/mockpp_pti_test.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- mockpp_pti_test.cpp 28 Dec 2005 09:23:31 -0000 1.11 +++ mockpp_pti_test.cpp 29 Dec 2005 19:29:52 -0000 1.12 @@ -2,7 +2,7 @@ mockpp_pti_test.cpp - unit tests for pti weakness functions ------------------- begin : Sun 04 03 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: DefaultResultStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/DefaultResultStub_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- DefaultResultStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.14 +++ DefaultResultStub_test.cpp 29 Dec 2005 19:29:51 -0000 1.15 @@ -2,7 +2,7 @@ DefaultResultStub_test.cpp - unit tests for DefaultResultStub class ------------------- begin : |DATE| - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationSegment_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationSegment_test.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ExpectationSegment_test.cpp 28 Dec 2005 21:29:21 -0000 1.18 +++ ExpectationSegment_test.cpp 29 Dec 2005 19:29:51 -0000 1.19 @@ -2,7 +2,7 @@ ExpectationSegment_test.cpp - unit tests for ExpectationSegment class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_5_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_5_test.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- VisitableMockObject_5_test.cpp 28 Dec 2005 09:23:31 -0000 1.33 +++ VisitableMockObject_5_test.cpp 29 Dec 2005 19:29:52 -0000 1.34 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 5 parameter methods ------------------- begin : Mit Feb 19 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_1_test.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- VisitableMockObject_1_test.cpp 28 Dec 2005 09:23:31 -0000 1.26 +++ VisitableMockObject_1_test.cpp 29 Dec 2005 19:29:52 -0000 1.27 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 1 parameter methods ------------------- begin : Sam Feb 8 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_1_void_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_1_void_test.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- VisitableMockObject_1_void_test.cpp 28 Dec 2005 09:23:31 -0000 1.26 +++ VisitableMockObject_1_void_test.cpp 29 Dec 2005 19:29:52 -0000 1.27 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 1 parameter void methods ------------------- begin : Sam Feb 8 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ThrowStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ThrowStub_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ThrowStub_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 +++ ThrowStub_test.cpp 29 Dec 2005 19:29:52 -0000 1.18 @@ -2,7 +2,7 @@ ThrowStub_test.cpp - unit tests for class ------------------- begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockObject_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockObject_1_test.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChainableMockObject_1_test.cpp 28 Dec 2005 09:23:30 -0000 1.16 +++ ChainableMockObject_1_test.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 1 parameter methods ------------------- begin : Thu Sep 28 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockObject_2_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockObject_2_test.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- VisitableMockObject_2_test.cpp 28 Dec 2005 09:23:31 -0000 1.25 +++ VisitableMockObject_2_test.cpp 29 Dec 2005 19:29:52 -0000 1.26 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and 2 parameter methods ------------------- begin : Die Feb 18 2003 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: AbstractInvocationDispatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/AbstractInvocationDispatcher_test.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- AbstractInvocationDispatcher_test.cpp 28 Dec 2005 21:29:19 -0000 1.27 +++ AbstractInvocationDispatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.28 @@ -2,7 +2,7 @@ AbstractInvocationDispatcher_test.cpp - unit tests for AbstractInvocationDispatcher class ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ChainableMockMethod_1_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ChainableMockMethod_1_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ChainableMockMethod_1_test.cpp 28 Dec 2005 09:23:30 -0000 1.14 +++ ChainableMockMethod_1_test.cpp 29 Dec 2005 19:29:51 -0000 1.15 @@ -4,7 +4,7 @@ unit tests for ChainableMockObject class and 1 parameter methods ------------------- begin : Thu Oct 2 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: VisitableMockMethod_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VisitableMockMethod_test.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- VisitableMockMethod_test.cpp 28 Dec 2005 21:29:21 -0000 1.22 +++ VisitableMockMethod_test.cpp 29 Dec 2005 19:29:52 -0000 1.23 @@ -4,7 +4,7 @@ unit tests for VisitableMockObject class and no parameter methods ------------------- begin : Sat Oct 15 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ReturnStub_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ReturnStub_test.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ReturnStub_test.cpp 28 Dec 2005 09:23:31 -0000 1.14 +++ ReturnStub_test.cpp 29 Dec 2005 19:29:51 -0000 1.15 @@ -2,7 +2,7 @@ ReturnStub_test.cpp - unit tests for ReturnStub class ------------------- begin : |DATE| - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Formatter_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Formatter_test.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- Formatter_test.cpp 28 Dec 2005 21:29:21 -0000 1.35 +++ Formatter_test.cpp 29 Dec 2005 19:29:51 -0000 1.36 @@ -2,7 +2,7 @@ Formatter_test.cpp - unit tests for Formatter class ------------------- begin : Fri Dez 27 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: ExpectationCounterRange_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ExpectationCounterRange_test.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ExpectationCounterRange_test.cpp 28 Dec 2005 21:29:21 -0000 1.17 +++ ExpectationCounterRange_test.cpp 29 Dec 2005 19:29:51 -0000 1.18 @@ -2,7 +2,7 @@ ExpectationCounterRange_test.cpp - unit tests for ExpectationCounterRange class ------------------- begin : Sat Dez 28 2002 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: InvokeAtLeastMatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/InvokeAtLeastMatcher_test.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- InvokeAtLeastMatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.9 +++ InvokeAtLeastMatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.10 @@ -2,7 +2,7 @@ InvokeAtLeastMatcher_test.cpp - unit tests for InvokeAtLeastMatcher class ------------------- begin : Sat Aug 27 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: FIFOInvocationDispatcher_test.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/FIFOInvocationDispatcher_test.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- FIFOInvocationDispatcher_test.cpp 28 Dec 2005 09:23:31 -0000 1.23 +++ FIFOInvocationDispatcher_test.cpp 29 Dec 2005 19:29:51 -0000 1.24 @@ -2,7 +2,7 @@ FIFOInvocationDispatcher_test.cpp - unit tests for FIFOInvocationDispatcher class ------------------- begin : Wed Sep 4 2004 - copyright : (C) 2002-2005 by Ewald Ar... [truncated message content] |
Update of /cvsroot/mockpp/mockpp/mockpp/examples/tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/examples/tutorial Modified Files: Calculator.h basicmock.cpp chainmock.cpp chainmock2.cpp consumer.cpp consumer.h cppunit.cpp interface.h poormock-se.cpp poormock.cpp tut-basic.dox tut-chain.dox tut-chain2.dox tut-cppunit.dox tut-poor-se.dox tut-poor.dox tut-verifying.dox tut-visit.dox tut-visit2.dox tutorial.dox verifying.cpp visitmock.cpp visitmock2.cpp Log Message: update copyright date Index: visitmock2.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/visitmock2.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- visitmock2.cpp 10 Dec 2005 20:07:21 -0000 1.3 +++ visitmock2.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-visit.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-visit.dox,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- tut-visit.dox 19 Nov 2005 19:14:11 -0000 1.10 +++ tut-visit.dox 29 Dec 2005 19:29:51 -0000 1.11 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-basic.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-basic.dox,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-basic.dox 19 Nov 2005 19:14:11 -0000 1.4 +++ tut-basic.dox 29 Dec 2005 19:29:51 -0000 1.5 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tutorial.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tutorial.dox,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- tutorial.dox 18 Nov 2005 10:58:55 -0000 1.13 +++ tutorial.dox 29 Dec 2005 19:29:51 -0000 1.14 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-cppunit.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-cppunit.dox,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-cppunit.dox 30 Jan 2005 20:53:27 -0000 1.4 +++ tut-cppunit.dox 29 Dec 2005 19:29:51 -0000 1.5 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-chain.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-chain.dox,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- tut-chain.dox 19 Nov 2005 19:14:11 -0000 1.11 +++ tut-chain.dox 29 Dec 2005 19:29:51 -0000 1.12 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: visitmock.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/visitmock.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- visitmock.cpp 10 Dec 2005 20:07:21 -0000 1.16 +++ visitmock.cpp 29 Dec 2005 19:29:51 -0000 1.17 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: consumer.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/consumer.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- consumer.cpp 24 Apr 2005 11:35:17 -0000 1.4 +++ consumer.cpp 29 Dec 2005 19:29:51 -0000 1.5 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: consumer.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/consumer.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- consumer.h 26 Nov 2005 17:58:40 -0000 1.5 +++ consumer.h 29 Dec 2005 19:29:51 -0000 1.6 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-poor-se.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-poor-se.dox,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- tut-poor-se.dox 19 Nov 2005 19:14:11 -0000 1.3 +++ tut-poor-se.dox 29 Dec 2005 19:29:51 -0000 1.4 @@ -3,7 +3,7 @@ ------------------- begin : Fri Feb 18 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-chain2.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-chain2.dox,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-chain2.dox 19 Nov 2005 19:14:11 -0000 1.4 +++ tut-chain2.dox 29 Dec 2005 19:29:51 -0000 1.5 @@ -3,7 +3,7 @@ ------------------- begin : Fri 18 Nov 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: poormock.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/poormock.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- poormock.cpp 26 Nov 2005 17:58:40 -0000 1.9 +++ poormock.cpp 29 Dec 2005 19:29:51 -0000 1.10 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: cppunit.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/cppunit.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- cppunit.cpp 28 Dec 2005 19:43:08 -0000 1.14 +++ cppunit.cpp 29 Dec 2005 19:29:51 -0000 1.15 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: verifying.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/verifying.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- verifying.cpp 28 Dec 2005 09:23:30 -0000 1.13 +++ verifying.cpp 29 Dec 2005 19:29:51 -0000 1.14 @@ -3,7 +3,7 @@ ------------------- begin : Sat 22 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: Calculator.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/Calculator.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Calculator.h 24 Mar 2005 20:59:51 -0000 1.3 +++ Calculator.h 29 Dec 2005 19:29:51 -0000 1.4 @@ -1,58 +1,58 @@ -/*************************************************************************** - Calculator.h - simple class for demonstration purposes - - ------------------- - begin : Sat 22 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold - email : mockpp at ewald-arnold dot de - - $Id$ - - ***************************************************************************/ - - -static int global_error = 0; // disturb tests - -/** An exception class. - * @internal - */ -class NetworkError {}; - -/** A simple class to test. - * The class is constructed with a value which - * serves as a base for different calculations. - */ -class Calculator -{ - public: - - /** Construct the object - * @param in_base the base value for all calculations - */ - Calculator (int in_base) - : base(in_base) - {} - - /** Add a value - * @param num value to add - * @result result of base and input - */ - int add(int num) - { - return base + num + global_error; - } - - /** Subtract a value - * @param num value to subtract - * @result result of base and input - */ - int sub(int num) - { - return base - num - global_error; - } - - private: - - int base; -}; - +/*************************************************************************** + Calculator.h - simple class for demonstration purposes + + ------------------- + begin : Sat 22 Jan 2005 + copyright : (C) 2002-2006 by Ewald Arnold + email : mockpp at ewald-arnold dot de + + $Id$ + + ***************************************************************************/ + + +static int global_error = 0; // disturb tests + +/** An exception class. + * @internal + */ +class NetworkError {}; + +/** A simple class to test. + * The class is constructed with a value which + * serves as a base for different calculations. + */ +class Calculator +{ + public: + + /** Construct the object + * @param in_base the base value for all calculations + */ + Calculator (int in_base) + : base(in_base) + {} + + /** Add a value + * @param num value to add + * @result result of base and input + */ + int add(int num) + { + return base + num + global_error; + } + + /** Subtract a value + * @param num value to subtract + * @result result of base and input + */ + int sub(int num) + { + return base - num - global_error; + } + + private: + + int base; +}; + Index: tut-poor.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-poor.dox,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- tut-poor.dox 19 Feb 2005 14:36:58 -0000 1.5 +++ tut-poor.dox 29 Dec 2005 19:29:51 -0000 1.6 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-verifying.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-verifying.dox,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- tut-verifying.dox 19 Feb 2005 14:36:58 -0000 1.6 +++ tut-verifying.dox 29 Dec 2005 19:29:51 -0000 1.7 @@ -3,7 +3,7 @@ ------------------- begin : Sun 23 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: basicmock.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/basicmock.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- basicmock.cpp 26 Nov 2005 17:58:40 -0000 1.8 +++ basicmock.cpp 29 Dec 2005 19:29:51 -0000 1.9 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: tut-visit2.dox =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/tut-visit2.dox,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-visit2.dox 19 Nov 2005 19:14:11 -0000 1.4 +++ tut-visit2.dox 29 Dec 2005 19:29:51 -0000 1.5 @@ -3,7 +3,7 @@ * * ------------------- * begin : Fri 18 Nov 2005 - * copyright : (C) 2002-2005 by Ewald Arnold + * copyright : (C) 2002-2006 by Ewald Arnold * email : mockpp at ewald-arnold dot de * * $Id$ Index: poormock-se.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/poormock-se.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- poormock-se.cpp 26 Nov 2005 17:58:40 -0000 1.6 +++ poormock-se.cpp 29 Dec 2005 19:29:51 -0000 1.7 @@ -3,7 +3,7 @@ ------------------- begin : Fri Feb 18 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: interface.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/interface.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- interface.h 26 Nov 2005 17:58:40 -0000 1.7 +++ interface.h 29 Dec 2005 19:29:51 -0000 1.8 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: chainmock2.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/chainmock2.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- chainmock2.cpp 10 Dec 2005 20:07:21 -0000 1.3 +++ chainmock2.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ Index: chainmock.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/tutorial/chainmock.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- chainmock.cpp 10 Dec 2005 20:07:21 -0000 1.13 +++ chainmock.cpp 29 Dec 2005 19:29:51 -0000 1.14 @@ -3,7 +3,7 @@ ------------------- begin : Sun 2 Jan 2005 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de $Id$ |