Springboot中的test

spring-boot-starter-test整合了spring-test和junit,简化了test,好用极了。直接贴代码讲解吧
1.maven配置:

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-testartifactId>
    
    <scope>testscope>
dependency>

这在创建Spring Initializr项目时,自带进来的test配置,也自动生成了test文件夹,文件夹下是一个test项目,自带了一个应用程序类**ApplicationTests:(@RunWith、@SpringBootTest两个标注标明了此类是测试启动类,@Test标注了测试方法)

@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {
    @Test
    public void contextLoads() {
    }
}

2.我们直接在这个类里添加测试方法,像开发中引用service一样,在测试方法体里去调用就可以了:
Springboot中的test_第1张图片
3.运行测试
在方法体中右键,选择“Run testGetUser”,即可启动测试。IDEA窗口下方会出现测试窗口。
Springboot中的test_第2张图片

你可能感兴趣的:(java,单元测试)