我们一直在使用surefire进行JUNIT测试,报告以漂亮的HTML格式提供。
我的要求是,如果有办法,我们可以获得excel格式的报告,包括所有文件名和测试失败以及其他细节,以便架构师可以过滤文件并找到原因。
我目前正在使用maven作为报告,而下面是使用“mvn网站”创建报告。命令
<reporting>
<plugins>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.3-VISTAPATCH-1.4</version>
<reportSets>
<reportSet>
<configuration>
<aggregate>true</aggregate>
<showSuccess>false</showSuccess>
</configuration>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>