|
From: Steve F. <sm...@us...> - 2001-09-08 16:32:03
|
Update of /cvsroot/mockobjects/mockobjects-java/doc/xdocs
In directory usw-pr-cvs1:/tmp/cvs-serv14648/xdocs
Modified Files:
site-book.xml index.xml doc-book.xml
Added Files:
papers.xml
Log Message:
added papers section
--- NEW FILE: papers.xml ---
<?xml version="1.0"?>
<!DOCTYPE document SYSTEM "./dtd/document-v10.dtd">
<document>
<header>
<title>Downloads</title>
<authors>
<person name="Steve Freeman" email="sm...@us..."/>
</authors>
</header>
<body>
<s1 title="Papers">
<p>This is a collection of papers on Mock Objects style and practice. </p>
<sl>
<li>
<link href="papers/jdbc_testfirst.html">Developing JDBC applications test-first</link>
<p>
Many developers find unit testing software with third-party components, such
as databases, hard to do. It also shows how an approach based on
Mock Objects can lead to more rigourous unit testing and, I believe, better
structured code than working with a real database. <em>Steve Freeman</em> </p>
</li>
</sl>
</s1>
</body>
</document>
Index: site-book.xml
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/doc/xdocs/site-book.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- site-book.xml 2001/08/21 11:41:27 1.8
+++ site-book.xml 2001/09/08 16:32:00 1.9
@@ -17,7 +17,8 @@
</menu>
<menu label="Documentation">
- <menu-item label="What is it ?" source="endotesting.xml"/>
+ <menu-item label="Introduction" source="endotesting.xml"/>
+ <menu-item label="Papers" source="papers.xml" />
<menu-item label="Naming conventions" source="naming_conventions.xml"/>
<menu-item type="external" label="API Reference" href="javadoc/index.html"/>
</menu>
Index: index.xml
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/doc/xdocs/index.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- index.xml 2001/08/27 02:43:33 1.13
+++ index.xml 2001/09/08 16:32:00 1.14
@@ -63,6 +63,10 @@
<table>
<tr>
+ <td>2001/09/08</td>
+ <td>Added a new section for papers on Mock Objects</td>
+ </tr>
+ <tr>
<td>2001/08/06</td>
<td>
The Mock Objects project now has a user web site.
Index: doc-book.xml
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/doc/xdocs/doc-book.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- doc-book.xml 2001/08/27 02:43:33 1.9
+++ doc-book.xml 2001/09/08 16:32:00 1.10
@@ -17,7 +17,8 @@
</menu>
<menu label="Documentation">
- <menu-item label="What are Mock Objects?" source="endotesting.xml"/>
+ <menu-item label="Introduction" source="endotesting.xml"/>
+ <menu-item label="Papers" source="papers.xml" />
<menu-item label="Naming conventions" source="naming_conventions.xml"/>
<menu-item type="external" label="API Reference" href="javadoc/index.html"/>
</menu>
|