Update of /cvsroot/cppunit/cppunit2/include/opentest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14899/include/opentest
Modified Files:
interfaces.h
Log Message:
Fixed some missing pass by const ref methods.
Index: interfaces.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/opentest/interfaces.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** interfaces.h 24 Jun 2005 19:43:22 -0000 1.1
--- interfaces.h 25 Jun 2005 11:05:55 -0000 1.2
***************
*** 31,35 ****
virtual ~TestDriverInterface() {}
! virtual void setTestDescriptions( TestDescriptions &tests ) = 0;
virtual void setDefaultTestPlan( const TestPlan &plan ) = 0;
--- 31,35 ----
virtual ~TestDriverInterface() {}
! virtual void setTestDescriptions( const TestDescriptions &tests ) = 0;
virtual void setDefaultTestPlan( const TestPlan &plan ) = 0;
***************
*** 47,51 ****
virtual void setTestResult( TestId testPlan,
! ResultStatus &status ) = 0;
virtual void testPlanDone( TestPlanId id ) = 0;
--- 47,51 ----
virtual void setTestResult( TestId testPlan,
! const ResultStatus &status ) = 0;
virtual void testPlanDone( TestPlanId id ) = 0;
|