Update of /cvsroot/cppunit/cppunit2/src/cpputtest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6802/src/cpputtest
Modified Files:
testtestcase.cpp
Log Message:
- changed most interface to use std::string instead of CppTL::ConstString
- CppTL::ConstString is now an implementation detail and is used to store string in objects as it is thread-safe.
Index: testtestcase.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/testtestcase.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** testtestcase.cpp 10 Aug 2005 21:34:29 -0000 1.17
--- testtestcase.cpp 8 Nov 2005 21:44:55 -0000 1.18
***************
*** 111,115 ****
void (*tearDownCallback)( int *),
int *testTearDownCall,
! const CppTL::ConstString &name )
{
return CppUT::makeTestCase(
--- 111,115 ----
void (*tearDownCallback)( int *),
int *testTearDownCall,
! const std::string &name )
{
return CppUT::makeTestCase(
|