We have different tests in the test/java dir and the surefire-report-plugin is 
specified in the pom.xml:

<reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>

If I execute mvn site, the test cases in the target/surfire-reports/TEST*.xml 
files are inserted multiple times:

TEST-a.xml contains:
  <testcase time="78.041" name="testCreateOffer"/>
  <testcase time="2.39" name="testKeywordSearch"/>
  <testcase time="0.421" name="testDeleteOffers"/>

and TEST-b.xml contains again:
  <testcase time="78.041" name="testCreateOffer"/>
  <testcase time="2.39" name="testKeywordSearch"/>
  <testcase time="0.421" name="testDeleteOffers"/>
and the new entry
  <testcase time="0.101" name="testDbReportExtended">

We have more than 400 tests and the list gets longer and longer due to the 
repeated entries for every test case. Is there some misconfiguration or is 
this a bug?

Regards, carsten



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to