我是java世界的新手。我们的团队正在使用Maven将所有内容构建为单个.war文件。我正在寻找工具.war文件来启用代码覆盖。想法是手动检测.war文件,然后运行测试。
我看了几个工具,但没有得到我正在寻找的东西,例如艾玛,小丑,cobertura等。寻找简单的指示。
答案 0 :(得分:1)
如果您想测量代码覆盖率,您应该使用Jacoco。它还允许测量单元测试和集成测试。
您所要做的就是添加依赖性:
<dependency>
<groupid>org.jacoco</groupid>
<artifactid>org.jacoco.core</artifactid>
<version>0.6.2.201302030002</version>
<scope>test</scope>
</dependency>
并添加jacoco-maven-plugin。请注意,如果您不使用Sonar,则必须使用原始文件路径替换$ {sonar.jacoco.reportPath}属性
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.2.201302030002</version>
<executions>
<!-- prepare agent for measuring unit tests -->
<execution>
<id>prepare-unit-tests</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
</configuration>
</execution>
<!-- prepare agent for measuring integration tests -->
<execution>
<id>prepare-integration-tests</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<destFile>${sonar.jacoco.itReportPath}</destFile>
<propertyName>itCoverageAgent</propertyName>
</configuration>
</execution>
</executions>
</plugin>
如果您还想使用声纳,请指定此类属性:
<properties>
<!-- select JaCoCo as a coverage tool -->
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
<!-- force sonar to reuse reports generated during build cycle -->
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<!-- set path for unit tests reports -->
<sonar.jacoco.reportPath>${project.basedir}/target/jacoco-unit.exec</sonar.jacoco.reportPath>
<!-- all modules have to use the same integration tests report file -->
<sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
</properties>
您可以在http://www.kubrynski.com/2013/03/measuring-overall-code-coverage-in.html
上找到更多详情答案 1 :(得分:0)
Java: measure code coverage for remote scripting tests
如果您想在开发中而不是在构建服务器上执行此操作,您可能需要尝试使用eclema。您可以使用eclemma在IDE中启动webapp,然后运行您想要运行的任何测试(在eclemma之外),它将很好地注释运行绿色的代码。