[Mockpp-commits] mockpp/mockpp/framework SelectUnittestFramework.h,1.8,1.9
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-01-01 16:35:08
|
Update of /cvsroot/mockpp/mockpp/mockpp/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30752/mockpp/framework Modified Files: SelectUnittestFramework.h Log Message: more descriptive name Index: SelectUnittestFramework.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/SelectUnittestFramework.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- SelectUnittestFramework.h 1 Jan 2006 11:17:27 -0000 1.8 +++ SelectUnittestFramework.h 1 Jan 2006 16:34:47 -0000 1.9 @@ -36,7 +36,7 @@ # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CxxTest::TestSuite -#define MOCKPP_TEST_DECL /* static or not */ +#define MOCKPP_TESTMETHOD_DECL /* static or not */ #define CXXTEST_HAVE_STD #ifndef CXXTEST_RUNNING @@ -60,7 +60,7 @@ #elif defined(MOCKPP_USE_CPPUNIT) //================================================= -#define MOCKPP_TEST_DECL /* not static */ +#define MOCKPP_TESTMETHOD_DECL /* not static */ # include <cppunit/extensions/HelperMacros.h> # define MOCKPP_DERIVE_PUBLIC_UNITFRAMEWORK : public CppUnit::TestFixture @@ -69,7 +69,7 @@ #elif defined(MOCKPP_USE_BOOSTTEST) //================================================= -# define MOCKPP_TEST_DECL static +# define MOCKPP_TESTMETHOD_DECL static # include <boost/test/auto_unit_test.hpp> |