第十一章、SpringBootTest单元测试实战(SpringBoot2.x)

简介:讲解SpringBoot的单元测试
        1、引入相关依赖
            springboot程序测试依赖,如果是自动创建项目默认添加


	org.springframework.boot
	spring-boot-starter-test
	test

       2、使用

@RunWith(SpringRunner.class)  //底层用junit  SpringJUnit4ClassRunner
@SpringBootTest(classes={XdclassApplication.class})//启动整个springboot工程
public class SpringBootTests { }

项目结构:

第十一章、SpringBootTest单元测试实战(SpringBoot2.x)_第1张图片

测试代码如下:

package xdclass_springboot.demo;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRu

你可能感兴趣的:(SpringBoot,2.x)