Cobertura配置排除不单元测试的类

Stella981
• 阅读 581

在Maven的pom中,添加配置信息,excludes中添加的文件或类即为不进行单元测试的文件。该配置中,entity和utils目录下的所有文件将不进行单元测试。

<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.6</version>
        <configuration>
            <formats>
                <format>xml</format>
            </formats>
            <instrumentation>
                <excludes>
                    <exclude>com/**/demo/entity/*</exclude>
                    <exclude>com/**/demo/utils/*</exclude>
                </excludes>
            </instrumentation>
        </configuration>
    </plugin>
</plugins>
点赞
收藏
评论区
推荐文章
皕杰报表之自定义函数
当设计器里的函数不能满足你的需求时,你需要自定义一些函数来来满足你的需求。设计器上1.选择【工具栏】【窗口】【首选项】【通用配置】【类加载配置】,在【自定义接口实现类配置】中添加自定义函数实现类,添加方式有两种:一是将编译好的.class文件打成jar包,点击【添加JAR】,将jar包导入;二是点击【添加文件夹】,将包含.class文件的文件夹添加进来
Stella981 Stella981
3年前
Mybatis Generator使用教程
\MybatisGenerator(MBG)的作用:根据库中的表自动生成dao、mapper映射文件、实体类1、pom中引入依赖<plugins<plugin<groupIdorg.mybatis.generator</groupId<a
Stella981 Stella981
3年前
MyBatis基于Maven的入门
主要内容如下: 1.myBatis在maven中的配置 2.myBatis在工程中的config配置文件3.myBatis为Bean和表的映射文件4.myBatis基本的使用 myBatis在maven中的配置,在pom.xml中增加内容       1.增加依赖 ,mybatis的,还有mysql的驱动的
Stella981 Stella981
3年前
SpringBoot集成mybatis以及自动化测试代码实现
Mybatis和logback的应用配置1、在module的pom.xml文件中,加载springboot和swagger、lombok、fastjson、mysql、mybatis包2、在resources中添加配置:配置文件有两种,一种是properties,另一种是yaml,这里使用yamlyaml配
Stella981 Stella981
3年前
SpringBoot Maven 打包(可运行)
示例工程:SpringBootMaven1.使用SpringBoot自带插件pom.xml文件中添加如下代码:(代码不设置行号,方便后续拷贝。)<build<plugins<plugin<groupIdorg.springframewo
Stella981 Stella981
3年前
Spring Boot(十一):Spring Boot如何测试打包部署
一、开发阶段(一)单元测试在开发阶段的时候最重要的是单元测试,SpringBoot对单元测试的支持已经很完善了。1、在pom.xml文件中添加依赖<dependency<groupIdorg.springframework.boot</groupId<artifactIdspringb
Easter79 Easter79
3年前
SpringBoot集成mybatis以及自动化测试代码实现
Mybatis和logback的应用配置1、在module的pom.xml文件中,加载springboot和swagger、lombok、fastjson、mysql、mybatis包2、在resources中添加配置:配置文件有两种,一种是properties,另一种是yaml,这里使用yamlyaml配
Stella981 Stella981
3年前
SpringBoot 部署到linux环境
第一部分:Springboot项目部署说明:工具使用的是IEDA第一:项目打包1.在pom文件中添加插件<build<plugins<plugin<groupId
Stella981 Stella981
3年前
Spring 单元测试
环境配置在Gradle或者Maven中添加Springtest创建类packagecom.hava.tactic.xml.access.repository;importcom.hava.tactic.sthpw.entity.LoginGroup;importcom.hava.tactic.sth
Stella981 Stella981
3年前
MyBatis整合Spring的实现(18)
例子同一个命名空间,但是有2个配置文件,A配置文件依赖于B配置文件信息,但是在加载时,先加载B配置文件的话,那么就会报错,前面章节已经捕获了此异常并把相应的配置添加到Configuration(全局配置类)中,这里就是在加载A配置文件后,再次加载B配置文件,也就把B配置信息添加到Configuration(全局配置类)里,下面就来看一下代码吧。