springboot整合junit
Posted 第十八使徒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot整合junit相关的知识,希望对你有一定的参考价值。
对maven项目的pom.xml进行配置
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<!--junit5不需要配置junit-vintage-engine-->
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
测试类如图所示
junit5可直接扫描测试的主启动类 也不需要加@runwith注解 只需要加@SpringBootTest 注解 也不需要指定主启动类的class文件
测试如图
以上是关于springboot整合junit的主要内容,如果未能解决你的问题,请参考以下文章
Java之Spring Boot入门到精通IDEA版SpringBoot整合其他框架Junit,Redis,MyBatis(一篇文章精通系列)中