Springboot写单元测试

导入依赖

		
            org.springframework.boot
            spring-boot-starter-test
            
                
                    org.junit.vintage
                    junit-vintage-engine
                
            
            test
        

当然,正常的Springboot也要导入

问题:不要引入


    org.junit.jupiter
    junit-jupiter-api
    5.5.0
    test

这样会出现依赖冲突,删除只保留Test

点击生成

Springboot写单元测试_第1张图片

Springboot写单元测试_第2张图片
即可生成测试类

添加注解

在类上添加@@SpringBootTest注解
如果想打印内容需要再加上@Slf4j注解

在启动类的时候,会调用BeforeEach

然后遍历整个@Test

最后调用@AfterEach方法来收尾

点击测试

Springboot写单元测试_第3张图片

你可能感兴趣的:(spring,boot,单元测试,后端)