bodewig 00/12/19 04:07:58
Modified: docs junit.html
Log:
Updated JUnit documentation to reflect the new todir attribute.
Submitted by: Stephane Bailliez <[EMAIL PROTECTED]>
Revision Changes Path
1.12 +12 -2 jakarta-ant/docs/junit.html
Index: junit.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/junit.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- junit.html 2000/10/05 09:11:11 1.11
+++ junit.html 2000/12/19 12:07:58 1.12
@@ -170,6 +170,11 @@
<td align="center" valign="top">No</td>
</tr>
<tr>
+ <td valign="top">todir</td>
+ <td valign="top">Directory to write the reports to.</td>
+ <td align="center" valign="top">No, default is current directory.</td>
+ </tr>
+ <tr>
<td valign="top">outfile</td>
<td valign="top">Base name of the test result. The full filename is
determined by this attribute and the extension of
@@ -228,6 +233,11 @@
<td align="center" valign="top">No</td>
</tr>
<tr>
+ <td valign="top">todir</td>
+ <td valign="top">Directory to write the reports to.</td>
+ <td align="center" valign="top">No, default is current directory.</td>
+ </tr>
+ <tr>
<td valign="top">if</td>
<td valign="top">Only run tests if the named property is set.</td>
<td align="center" valign="top">No</td>
@@ -278,7 +288,7 @@
<formatter type="xml" />
</test>
- <batchtest fork="yes">
+ <batchtest fork="yes" todir="${reports.tests}">
<fileset dir="${src.tests}">
<include name="**/*Test*.java" />
<exclude name="**/AllTests.java" /<
@@ -295,7 +305,7 @@
<p>For each matching file in the directory <code>${src.tests}</code> a
test is run in a separate VM. If a test fails, the build process is
aborted. Results are collected in files named
-<code>TEST-<em>name</em>.txt</code>.</p>
+<code>TEST-<em>name</em>.txt</code> and written to
<code>${reports.tests}</code>.</p>
</body>
</html>