SpringBoot整合Junit实例过程解析

网友投稿 289 2022-12-22


SpringBoot整合Junit实例过程解析

这篇文章主要介绍了SpringBoot整合Junit实例过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

前提条件:SpringBoot已经整合了Mybatis,至于SpringBoot如何整合Mybatis可参考SpringBoot整合mybatis简单案例过程解析

SpringBoot为什么要整合Juni?

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

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

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

2、编写测试类

3、启动测试

具体内容如下:

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

org.springframework.boot

spring-boot-starter-test

test

编写测试类

package com.itheima;

import ch.qos.logback.core.net.SyslogOutputStream;

imphHByOWort 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(){

ListhHByOW users = userMapper.queryUserList();

System.out.println(users);

}

}

注意该测试类是要写在src/test路径的某个文件夹中的,如下图:

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

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

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


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java设计模式模板方法模式(Template)用法解析
下一篇:Java 数组复制clone方法实现详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~