Spring Boot—(11)SpringBoot使用Junit单元测试

Spring Boot—(11)SpringBoot使用Junit单元测试欢迎关注公众号:java4all摘要:本文详细的记录了SpringBoot如何结合Junit写测试用例,如何执行,打包执行,忽略执行等操作,SpringBoot内置了Junit测试组件,使用很方便,不用再单独引入其他测试组件。演示环境:SpringBoot+mybatis开发工具:IntelliJIDEA1.pom.xml一般使用idea新建一个Sp…

大家好,又见面了,我是你们的朋友全栈君。

摘要:本文详细的记录了SpringBoot如何结合Junit写测试用例,如何执行,打包执行,忽略执行等操作,SpringBoot内置了Junit测试组件,使用很方便,不用再单独引入其他测试组件。

 

演示环境

SpringBoot + mybatis

开发工具:IntelliJ IDEA

 

1.pom.xml

 

一般使用idea新建一个SpringBoot web项目时,一般都会自动引入此依赖,如果没有,请手动引入。

 

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>

 

2.测试类基类

 

新建的项目,一般会有test包和test类,结构如下:

Spring Boot---(11)SpringBoot使用Junit单元测试

如果没有,我们自己创建一个,由于一个项目中我们会写很多很多测试类,而测试类上面是需要以下几个注解的,每建一个类都去补注解,太麻烦,我们就在这个类中加上注解,其他测试类直接继承这个类就好了:

 

package com.alibaba;

import org.junit.After;
import org.junit.Before;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.web.WebAppConfiguration;

@RunWith(SpringRunner.class)
@SpringBootTest
//由于是Web项目,Junit需要模拟ServletContext,因此我们需要给我们的测试类加上@WebAppConfiguration。
@WebAppConfiguration
public class TmallApplicationTests {

    @Before
    public void init() {
        System.out.println("开始测试-----------------");
    }

    @After
    public void after() {
        System.out.println("测试结束-----------------");
    }
}

 

3.controller,service,dao等,省略,就是普通方法,普通接口

4.测试类

 

我这里建一个测试类,继承基类,然后测试我service中的两个方法

 

package com.alibaba;

import com.alibaba.service.EntFileService;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

/**
 * Created by lightClouds917
 * Date 2018/2/2
 * Description:测试类
 */
public class EntFileTest extends TmallApplicationTests {


    @Autowired
    private EntFileService entFileService;
    //@Ignore("not ready yet")
    @Test
    public void testGetEntFileById(){
        Assert.assertSame("企业数量有误",500,entFileService.getCount());
    }

    @Test
    public void testGetEntFileList(){
        Assert.assertSame("企业数量不为10",10,entFileService.getEntFileList());
    }
}

如上,直接@Autowired引入你想测试的类就好,然后继承基类,测试方法上面要加@Test注解。

然后,第一个测试方法:我想测试一下企业数量是不是600,参数意义:

第一个参数:如果测试不通过,会抛出此消息,此参数可不要;

第二个参数:我预期的值,我这里希望他查出来的结果是600;

第三个参数:是实际的结果,就是我们调用方法返回的结果;

我们可以看一下Assert类的源码:
 

    /**
     * Asserts that two objects refer to the same object. If they are not, an
     * {@link AssertionError} is thrown with the given message.
     *
     * @param message the identifying message for the {@link AssertionError} (<code>null</code>
     * okay)
     * @param expected the expected object
     * @param actual the object to compare to <code>expected</code>
     */
    static public void assertSame(String message, Object expected, Object actual) {
        if (expected == actual) {
            return;
        }
        failNotSame(message, expected, actual);
    }

    /**
     * Asserts that two objects refer to the same object. If they are not the
     * same, an {@link AssertionError} without a message is thrown.
     *
     * @param expected the expected object
     * @param actual the object to compare to <code>expected</code>
     */
    static public void assertSame(Object expected, Object actual) {
        assertSame(null, expected, actual);
    }

 

5.运行测试用例

 

运行有两种方法:

1.选中方法,右键,然后run 。。。;

2.点击方法前的小标;

具体操作如下截图:

Spring Boot---(11)SpringBoot使用Junit单元测试

现在看运行结果,如下图:

区块一:这里是测试用例的执行结果,由于未获得预期结果,打印出了我们提前设置的错误信息。

区块二:这是测试用例的覆盖率,类的覆盖,方法的覆盖,行数的覆盖,非常详细。

区块三:此区块是预期结果和实际结果的详细对比,点击后才会显示,如图点击位置。

Spring Boot---(11)SpringBoot使用Junit单元测试

关于Assert中,还有很多断言方法,方法名字很规范,看名字就知道怎么用了,这里不再过多说明。

 

6.打包测试

 

项目开发完后,我们写了100个测试用例类,我不能每个类都点击进去,然后慢慢执行,SpringBoot提供了打包测试的方式:我们用一个类,把所有的测试类整理进去,然后直接运行这个类,所有的测试类都会执行。

我这里建了两个测试类,分别是EntFileTest,EntFileTest2,现在我打包进TestSuits,让他们一次运行:

 

@Suite.SuiteClasses({EntFileTest.class,EntFileTest2.class})

Spring Boot---(11)SpringBoot使用Junit单元测试

打包完整代码:

 

package com.alibaba;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * Created by lightClouds917
 * Date 2018/2/2
 * Description:打包测试
 */
//@Ignore("not ready yet")
@RunWith(Suite.class)
@Suite.SuiteClasses({EntFileTest.class,EntFileTest2.class})
public class TestSuits {

    //不用写代码,只需要注解即可
}

 

 

7.忽略方法

 

当我一个测试类写了10个测试方法时,其中有1个我暂时不想测,想跳过,但是其他9个我想一次运行,怎么办?这里有一个忽略注解,写在方法上,可以忽略这个测试方法,写在类上,可以忽略这个类。

 

package com.alibaba;

import com.alibaba.service.EntFileService;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

/**
 * Created by lightClouds917
 * Date 2018/2/2
 * Description:测试类
 */
public class EntFileTest extends TmallApplicationTests {


    @Autowired
    private EntFileService entFileService;

    @Ignore("not ready yet")
    @Test
    public void testGetEntFileById(){
        Assert.assertSame("企业数量有误",600,entFileService.getCount());
    }

    @Test
    public void testGetEntFileList(){
        Assert.assertSame("企业数量不为10",10,entFileService.getEntFileList());
    }
}

此时,运行这个测试类,testGetEntFileById()方法就会忽略执行。

—————————-猝不及防,我要打广告了—————————-

欢迎关注公众号java4all,或添加IT云清个人号,一起聊技术聊成长。

Spring Boot---(11)SpringBoot使用Junit单元测试   Spring Boot---(11)SpringBoot使用Junit单元测试

            java4all 公众号                       IT云清 个人号 

—————————-猝不及防,我要打广告了—————————-

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/133166.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • arm按键控制led灯闪烁(嵌入式按键实验报告)

    实验六键盘控制LED灯实验1实验目的(1)通过实验掌握中断式键盘控制与设计方法;(2)熟练编写S3C2410中断服务程序。2实验设备(1)S3C2410嵌入式开发板,JTAG仿真器。(2)软件:PC机操作系统WindowsXP,ADS1.2集成开发环境,仿真器驱动程序,超级终端通讯程序。3实验内容编写中断处理程序,处理一个键盘中断,并在串口打印中断及按键显示信息。4实验步骤(1)参照模板工程,新…

  • padStart()与padEnd()「建议收藏」

    padStart()与padEnd()「建议收藏」padStart()padStart()方法用另一个字符串填充当前字符串(如果需要的话,会重复多次),以便产生的字符串达到给定的长度。从当前字符串的左侧开始填充。语法str.padStart(targetLength[,padString])参数:targetLength:当前字符串需要填充到的目标长度。如果这个数值小于当前字符串的长度,则返回当前字符串本身。padString:可选填充字符串。如果字符串太长,使填充后的字符串长度超过了目标长度,则只保留最左侧的部分,其他部分会被截

  • UVA 12230 – Crossing Rivers(概率)

    UVA 12230 – Crossing Rivers(概率)

  • 解决iframe参数过长无法加载问题小记

    解决iframe参数过长无法加载问题小记项目中用到了iframe,传参的时候使用的src属性,默认采用的get方式,此种方式在参数较长的时候就会报错(404无法找到资源),为了解决这种情况,改为采用post方式提交。解决方法:结合form表单,利用表单的post请求方式达到目的。实现方式 增加一个form表单的标签,method设置为post,target设置一个标识,假如target=”target1” 在iframe设置na…

  • 40款帮助你加薪的IDEA神器插件![通俗易懂]

    写在前面的话:大家好,我是全栈小刘,一名零零后的编程爱好者。从初中开始编程,对编程有独特情怀,热爱技术,目前已有五年的编程经验,做过许许多多有意思的项目,这篇博客,算是对自己学习的一个总结,算是一份笔记,如果你对Java全栈感兴趣可以关注我的动态一起学习1.01的365次方=37.78343433289>>>10.99的365次方=0.02551796445…

  • pytorch mseloss_pytorch handbook

    pytorch mseloss_pytorch handbook1、均方损失函数:loss(xi,yi)=(xi−yi)2loss(xi,yi)=(xi−yi)2\text{loss}(\mathbf{x}_i,\mathbf{y}_i)=(\mathbf{x}_i-\mathbf{y}_i)^2这里loss,x,y的维度是一样的,可以是向量或者矩阵,i是下标。很多的loss函数都有size_average和reduc…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号