Update of /cvsroot/mockpp/mockpp/mockpp/framework
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7221/mockpp/framework
Modified Files:
.cvsignore Makefile.am VerifyingTestCaller.cpp
VerifyingTestCaller.h VerifyingTestCase.cpp
VerifyingTestCase.h
Log Message:
restructuring and cleanup
Index: .cvsignore
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- .cvsignore 10 Dec 2005 19:19:17 -0000 1.1
+++ .cvsignore 10 Dec 2005 20:07:21 -0000 1.2
@@ -0,0 +1 @@
+Makefile.in
Index: VerifyingTestCaller.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/VerifyingTestCaller.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- VerifyingTestCaller.cpp 10 Dec 2005 19:23:45 -0000 1.1
+++ VerifyingTestCaller.cpp 10 Dec 2005 20:07:21 -0000 1.2
@@ -29,7 +29,7 @@
#include <mockpp/mockpp.h> // always first
-#include <mockpp/VerifyingTestCaller.h>
+#include <mockpp/framework/VerifyingTestCaller.h>
namespace mockpp {
Index: VerifyingTestCaller.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/VerifyingTestCaller.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- VerifyingTestCaller.h 10 Dec 2005 19:23:45 -0000 1.1
+++ VerifyingTestCaller.h 10 Dec 2005 20:07:21 -0000 1.2
@@ -33,7 +33,8 @@
#include <mockpp/mockpp.h> // always first
#include <mockpp/MockObject.h>
-#include <mockpp/VerifyingTestCase.h>
+
+#include <mockpp/framework/VerifyingTestCase.h>
#ifdef HAVE_CPPUNIT
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.am 10 Dec 2005 19:19:18 -0000 1.1
+++ Makefile.am 10 Dec 2005 20:07:21 -0000 1.2
@@ -0,0 +1,19 @@
+INCLUDES = $(all_includes) -I$(top_srcdir) -I$(top_builddir) $(EA_EXTRA_INC)
+DEFAULT_INCLUDES = $(INCLUDES)
+
+noinst_LTLIBRARIES = libframework.la
+
+libframeworkinclude_HEADERS = \
+ CxxTestSupport.h SelectUnittestFramework.h \
+ VerifyingTestCase.h VerifyingTestCaller.h
+
+EXTRA_DIST =
+
+libframeworkincludedir = $(includedir)/mockpp/framework
+
+CLEANFILES = *.~* *.~~* *~ *.old
+
+libframework_la_SOURCES = \
+ VerifyingTestCase.cpp VerifyingTestCaller.cpp
+
+noinst_HEADERS =
Index: VerifyingTestCase.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/VerifyingTestCase.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- VerifyingTestCase.h 10 Dec 2005 19:23:45 -0000 1.1
+++ VerifyingTestCase.h 10 Dec 2005 20:07:21 -0000 1.2
@@ -107,5 +107,5 @@
#endif // MOCKPP_VERIFYINGTESTCASE_H
-#include <mockpp/VerifyingTestCaller.h>
+#include <mockpp/framework/VerifyingTestCaller.h>
Index: VerifyingTestCase.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/framework/VerifyingTestCase.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- VerifyingTestCase.cpp 10 Dec 2005 19:23:45 -0000 1.1
+++ VerifyingTestCase.cpp 10 Dec 2005 20:07:21 -0000 1.2
@@ -33,7 +33,7 @@
#include <mockpp/mockpp.h> // always first
-#include <mockpp/VerifyingTestCase.h>
+#include <mockpp/framework/VerifyingTestCase.h>
#include <mockpp/compat/Exception.h>
#include <mockpp/compat/Formatter.h>
|