码迷,mamicode.com
首页 > 编程语言 > 详细

0002SpringBoot整合Junit

时间:2019-11-17 11:02:17      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:control   ram   list   bsp   为什么   测试   int   控制   sse   

前提条件:SpringBoot已经整合了Mybatis,至于SpringBoot如何整合Mybatis可参考我的上一篇文章

SpringBoot为什么要整合Juni?

SpringBoot整合了Junit后,在写了Mapper接口后,可直接通过Junit进行测试,不用再写Controller层,不用启动引导类之后通过页面的形式一层一层的调用。

在SpringBoot整合Mybatis基础上,添加如下3步即可整合Junit并进行测试:

1、配置Junit的起步配置(pom.xml)

2、编写测试类

3、启动测试

具体内容如下:

pom.xml中配置Junit的起步配置

<!--SpringBoot集成Junit-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

编写测试类
package com.itheima;


import ch.qos.logback.core.net.SyslogOutputStream;
import com.itheima.domain.User;
import com.itheima.mapper.UserMapper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import java.util.List;

//用哪个类来运行
@RunWith(SpringRunner.class)
//classes配置的是SpringBoot的引导类
@SpringBootTest(classes = SpringbootMybatisApplication.class)
public class MybatisTest {
//注入自定义的要测试的Mapper接口
@Autowired
private UserMapper userMapper;

//用于声明这是一个测试方法
@Test
public void test(){
List<User> users = userMapper.queryUserList();
System.out.println(users);
}
}
注意该测试类是要写在src/test路径的某个文件夹中的,如下图:

技术图片

 

 在测试类的测试方法左侧点击启动按钮启动测试:

技术图片

 

出现下图,代表执行成功,具体内容可在控制台查看:

 技术图片

 

 

以上内容为实验所的结果,若有理解不到位的地方,望指正及指点。

 

 

0002SpringBoot整合Junit

标签:control   ram   list   bsp   为什么   测试   int   控制   sse   

原文地址:https://www.cnblogs.com/xiao1572662/p/11875483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!