Update of /cvsroot/mockpp/mockpp/mockpp/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30919/mockpp/tests
Modified Files:
Makefile.am VerifyingTestCaller_test.cpp
Log Message:
ministl basically working
Index: VerifyingTestCaller_test.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/VerifyingTestCaller_test.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- VerifyingTestCaller_test.cpp 27 Nov 2005 17:27:57 -0000 1.8
+++ VerifyingTestCaller_test.cpp 1 Dec 2005 18:15:08 -0000 1.9
@@ -117,7 +117,7 @@
{
VerifyingTestCaseDummy vd;
mockpp::VerifyingTestCaller<VerifyingTestCaseDummy, true>
- caller(MOCKPP_STL::string("caller"), &VerifyingTestCaseDummy::method, vd);
+ caller(std::string("caller"), &VerifyingTestCaseDummy::method, vd);
caller.runTest();
MOCKPP_ASSERT_EQUALS((unsigned)2, vd.ver);
MOCKPP_ASSERT_EQUALS((unsigned)3, vd.clr);
@@ -128,7 +128,7 @@
{
VerifyingTestCaseDummy *vd = new VerifyingTestCaseDummy;
mockpp::VerifyingTestCaller<VerifyingTestCaseDummy, true>
- caller(MOCKPP_STL::string("caller"), &VerifyingTestCaseDummy::method, vd);
+ caller(std::string("caller"), &VerifyingTestCaseDummy::method, vd);
caller.runTest();
MOCKPP_ASSERT_EQUALS((unsigned)2, vd->ver);
MOCKPP_ASSERT_EQUALS((unsigned)3, vd->clr);
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Makefile.am,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- Makefile.am 30 Oct 2005 20:27:30 -0000 1.88
+++ Makefile.am 1 Dec 2005 18:15:08 -0000 1.89
@@ -148,7 +148,7 @@
echo "// to check #include-ing of *all* headers" >>check_inst.cpp
echo "// /*" >>check_inst.cpp
(N=`pwd`/check_inst.cpp; cd $(srcdir)/../..; find . -name "*.h" \
- | grep -v "config" | grep -v "/tests/" | grep -v "/docs/" | grep -v "/examples/" \
+ | grep -v "config" | grep -v "/tests/" | grep -v "/ministl/" | grep -v "/docs/" | grep -v "/examples/" \
| sed -e "s,\./,#include <,g" -e "s/\.h/\.h>/g" >>$$N)
echo "// */" >>check_inst.cpp
echo "int main()" >>check_inst.cpp
|