我们有一个 Eclipse 插件的多模块 Maven 项目。
使用 JaCoCo 生成代码覆盖率报告正在运行,但统计数据似乎是错误的。
正在计算测试类本身的覆盖率,并将其添加到一般代码覆盖率中。
例子:
- 一个名为 org.myplugin 的插件有 50% 的覆盖率和 100 行代码。
- 名为 org.myplugin.tests 的测试插件具有 100% 的覆盖率和 100 行代码。
- 一般代码覆盖率达到 75% 或 150 行代码。
这当然不是真的正确,因为重要的是覆盖率真的只有正常代码的 50%。
这是正常行为吗?我能做些什么来排除测试类的覆盖率?
编辑:以下是我们的几个 POM 文件的相关部分:
项目 POM:
<groupId>de.tool</groupId>
<artifactId>toolname</artifactId>
<version>2.0</version>
<packaging>pom</packaging>
<properties>
<tycho-version>0.13.0</tycho-version>
<junit-version>4.8.2</junit-version>
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
<jacoco-maven-version>0.5.6.201201232323</jacoco-maven-version>
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPath>${project.basedir}/../../target/jacoco.exec</sonar.jacoco.reportPath>
<!-- <sonar.surefire.reportsPath>../${project.artifactId}.tests/target/surefire-reports/</sonar.surefire.reportsPath> -->
</properties>
<modules>
<module>de.tool.plugin</module>
<module>de.tool.plugin.tests</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-version}</version>
<configuration>
<destFile>${project.basedir}/../../target/jacoco.exec</destFile>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
插件POM:
<parent>
<groupId>de.tool</groupId>
<artifactId>toolname</artifactId>
<version>2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>de.tool.plugin</groupId>
<artifactId>de.tool.plugin</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
测试插件 POM:
<parent>
<groupId>de.tool</groupId>
<artifactId>toolname</artifactId>
<version>2.0</version>
<relativePath>../../plugins</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>de.tool.plugin</groupId>
<artifactId>de.tool.plugin.tests</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
</dependency>
</dependencies>