Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 48887 invoked from network); 23 Jun 2002 01:35:36 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 23 Jun 2002 01:35:36 -0000 Received: (qmail 28907 invoked by uid 97); 23 Jun 2002 01:35:40 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 28853 invoked by uid 97); 23 Jun 2002 01:35:39 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 28842 invoked by uid 97); 23 Jun 2002 01:35:39 -0000 X-Antivirus: nagoya (v4198 created Apr 24 2002) Date: 23 Jun 2002 01:35:29 -0000 Message-ID: <20020623013529.39550.qmail@icarus.apache.org> From: ehatcher@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/junit XMLResultAggregator.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 @@ /** - *

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. * *

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: TESTS-TestSuites.xml */ 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 todir attribute. If not set it will use {@link #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: For additional commands, e-mail: