Update of /cvsroot/mockpp/mockpp/mockpp/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27038/mockpp/tests
Modified Files:
ReturnObjectList_test.cpp
Log Message:
typo
Index: ReturnObjectList_test.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/ReturnObjectList_test.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- ReturnObjectList_test.cpp 23 Jul 2005 13:31:57 -0000 1.13
+++ ReturnObjectList_test.cpp 31 Aug 2005 14:47:07 -0000 1.14
@@ -132,7 +132,7 @@
{
mockpp::ReturnObjectList<unsigned> rol (MOCKPP_PCHAR("data"), 0);
rol.addObjectToReturn(456);
- rol.setDefaultReturnVaue(123);
+ rol.setDefaultReturnValue(123);
CPPUNIT_ASSERT(456 == rol.nextReturnObject());
CPPUNIT_ASSERT(123 == rol.nextReturnObject());
@@ -152,7 +152,7 @@
rol.addObjectToReturn(456);
CPPUNIT_ASSERT(MOCKPP_PCSTRING("\n[\n - 456\n]\n") == rol.toString());
- rol.setDefaultReturnVaue(123);
+ rol.setDefaultReturnValue(123);
CPPUNIT_ASSERT(MOCKPP_PCSTRING("\n[\n - 456\n * 123\n]\n") == rol.toString());
}
|