ehatcher 2002/06/22 18:35:28
Modified: src/main/org/apache/tools/ant/taskdefs/optional/junit Tag:
ANT_15_BRANCH XMLResultAggregator.java
Log:
Javadoc work.
Revision Changes Path
No revision
No revision
1.17.2.1 +8 -5
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/XMLResultAggregator.java
Index: XMLResultAggregator.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/XMLResultAggregator.java,v
retrieving revision 1.17
retrieving revision 1.17.2.1
diff -u -r1.17 -r1.17.2.1
--- XMLResultAggregator.java 15 Apr 2002 14:56:33 -0000 1.17
+++ XMLResultAggregator.java 23 Jun 2002 01:35:28 -0000 1.17.2.1
@@ -80,8 +80,9 @@
/**
- * <p> This is an helper class that will aggregate all testsuites under a
specific
- * directory and create a new single document. It is not particulary clean
but
+ * Aggregates all <junit> XML formatter testsuite data under
+ * a specific directory and transforms the results via XSLT.
+ * It is not particulary clean but
* should be helpful while I am thinking about another technique.
*
* <p> The main problem is due to the fact that a JVM can be forked for a
testcase
@@ -113,7 +114,9 @@
/** the default file name: <tt>TESTS-TestSuites.xml</tt> */
public static final String DEFAULT_FILENAME = "TESTS-TestSuites.xml";
-
+ /**
+ * Generate a report based on the document created by the merge.
+ */
public AggregateTransformer createReport(){
AggregateTransformer transformer = new AggregateTransformer(this);
transformers.addElement(transformer);
@@ -121,7 +124,7 @@
}
/**
- * Set the name of the file aggregating the results. It must be relative
+ * Set the name of the aggregegated results file. It must be relative
* from the <tt>todir</tt> attribute. If not set it will use [EMAIL
PROTECTED] #DEFAULT_FILENAME}
* @param value the name of the file.
* @see #setTodir(File)
@@ -142,7 +145,7 @@
}
/**
- * Add a new fileset containing the xml results to aggregate
+ * Add a new fileset containing the XML results to aggregate
* @param fs the new fileset of xml results.
*/
public void addFileSet(FileSet fs) {
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>