这篇文章主要介绍了Spring Boot通过Junit实现单元测试过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.需要在pom.xml中引入spring-boot-starter-test
org.springframework.boot spring-boot-starter-test
2.单元测试代码
两个关键的注解
@RunWith(SpringRunner.class)
@SpringBootTest
package com.niugang.test; import java.util.List; import javax.annotation.Resource; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import com.niugang.entity.User; import com.niugang.service.UserService; @RunWith(SpringRunner.class) @SpringBootTest public class TestUser { @Resource private UserService userService; @Test public void test1(){ Listlist = userService.queryList(null); System.out.println("集合大小:"+list.size()); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。