[Cppunit-cvs] cppunit2/include/cpput message.h,1.4,1.5
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-02-23 21:42:02
|
Update of /cvsroot/cppunit/cppunit2/include/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29093/include/cpput Modified Files: message.h Log Message: * commented out properties stuff as it will likely be taken over by open test properties. Index: message.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpput/message.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** message.h 20 Nov 2004 12:12:38 -0000 1.4 --- message.h 23 Feb 2005 21:41:54 -0000 1.5 *************** *** 3,7 **** # include <cpput/config.h> ! # include <cpput/properties.h> # include <string> # include <vector> --- 3,7 ---- # include <cpput/config.h> ! //# include <opentest/properties.h> # include <string> # include <vector> *************** *** 95,125 **** } ! Properties &properties() ! { ! return properties_; ! } ! const Properties &properties() const ! { ! return properties_; ! } ! void setStatus( bool succeeded ) ! { ! properties().set( "cpput.status", succeeded ); ! } ! void setResultType( const std::string &resultType ) ! { ! properties().set( "cpput.result_type", resultType ); ! } ! bool hasResultType() const ! { ! return properties().has( "cpput.result_type" ); ! } private: ! Properties properties_; typedef std::vector<std::string> Details; --- 95,125 ---- } ! //Properties &properties() ! //{ ! // return properties_; ! //} ! //const Properties &properties() const ! //{ ! // return properties_; ! //} ! //void setStatus( bool succeeded ) ! //{ ! // properties().set( "cpput.status", succeeded ); ! //} ! //void setResultType( const std::string &resultType ) ! //{ ! // properties().set( "cpput.result_type", resultType ); ! //} ! //bool hasResultType() const ! //{ ! // return properties().has( "cpput.result_type" ); ! //} private: ! //Properties properties_; typedef std::vector<std::string> Details; |