Update of /cvsroot/cppunit/cppunit2/include/cpput
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11378/include/cpput
Modified Files:
testinfo.h
Log Message:
* modified TestRunner/TestDriver protocol to allow incremental result properties update.
Index: testinfo.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpput/testinfo.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** testinfo.h 18 Nov 2004 09:20:34 -0000 1.1
--- testinfo.h 19 Nov 2004 21:39:13 -0000 1.2
***************
*** 23,30 ****
}
! virtual void mergeInResult( const std::string &path,
const OpenTest::Value &value ) = 0;
! virtual void appendToResult( const std::string &path,
const OpenTest::Value &value ) = 0;
};
--- 23,32 ----
}
! virtual void mergeInResult( const OpenTest::Properties &result ) = 0;
!
! virtual void mergeInResult( const OpenTest::PropertyPath &path,
const OpenTest::Value &value ) = 0;
! virtual void appendToResult( const OpenTest::PropertyPath &path,
const OpenTest::Value &value ) = 0;
};
***************
*** 61,68 ****
void CPPUT_API realizeAssertion();
! void CPPUT_API mergeInResult( const std::string &path,
const OpenTest::Value &value );
! void CPPUT_API appendToResult( const std::string &path,
const OpenTest::Value &value );
--- 63,72 ----
void CPPUT_API realizeAssertion();
! void CPPUT_API mergeInResult( const OpenTest::Properties &result );
!
! void CPPUT_API mergeInResult( const OpenTest::PropertyPath &path,
const OpenTest::Value &value );
! void CPPUT_API appendToResult( const OpenTest::PropertyPath &path,
const OpenTest::Value &value );
|