为什么我会jacoco:check gives 创建测试类时出错

j13ufse2  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(322)

我使用的是iintellij,当我运行我的项目时,它可以很好地与jacoco和所有依赖项一起工作。
当我创建一个测试类时,我突然得到一个错误,我不明白为什么。
我得到的错误是这个。

[ERROR] Failed to execute goal org.jacoco:jacoco-maven-plugin:0.8.5:check (jacoco-check) on project 
statistik-jar: Coverage checks have not been met. See log for details. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following 
articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :statistik-jar

当我有一个测试类时,它工作得很好,但是当我再添加一个测试类时,它会产生这个错误。当我得到错误时,文件夹看起来是这样的

/Test
   /test.class  <-- working
   /folder
      /test2.class <-- gives a error

创建第二个类时发生此错误

lpwwtiir

lpwwtiir1#

因为jacoco使用percentile,如果您创建更多的类并且没有相关的测试,那么它将给出错误。

<value>COVEREDRATIO</value>
                        <minimum>0.xx</minimum>

检查这些数据。我会给你一些见解。

相关问题