SpringBoot使用cobertura-maven-plugin生成代码覆盖率报表

Posted ISaiSai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot使用cobertura-maven-plugin生成代码覆盖率报表相关的知识,希望对你有一定的参考价值。

pom配置

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.5.2</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <formats>
                        <format>html</format>
                        <format>xml</format>
                    </formats>
                </configuration>
            </plugin>
        </plugins>
    </build>

执行命令:
mvn cobertura:cobertura

则在target/site/cobertura/index.html 文件会生成单元测试覆盖率的文件
效果如下

cobertura斜体样式-maven-plugin 文档:https://mvnrepository.com/artifact/org.codehaus.mojo/cobertura-maven-plugin

以上是关于SpringBoot使用cobertura-maven-plugin生成代码覆盖率报表的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot.14.SpringBoot使用jsp模板打包成jar

SpringBoot.14.SpringBoot使用jsp模板打包成jar

SpringBoot.14.SpringBoot使用jsp模板打包成jar

SpringBoot.14.SpringBoot使用jsp模板打包成jar

SpringBoot.14.SpringBoot使用jsp模板打包成jar

SpringBoot专栏 -- 搭建第一个SpringBoot项目