在Spring Boot 2.2和2.3中,使用JUnit5编写测试【支持JUnit5】
这篇文章记载了关于“在Spring Boot 2.2或更高版本中支持JUnit5”的内容。
希望对以下用途有参考价值!
-
- 从Spring Boot 2.1升级到2.2以上
-
- 从JUnit4迁移到JUnit5
- 在编写JUnit5时,希望先排除JUnit4
前提是一个必要的条件。
环境
-
- Java 8〜(Spring boot2.2以上では、Java8, 11にサポートしています)
- Spring boot 2.2〜
了解这个知识会很有用的。
-
- Spring boot 2.2以上からは、JUnit5がデフォルト
-
- JUnit4と、JUnit5は基本的に互換はない
- 現状JUnit4と5が共存できるようになっている(いずれなくなる)
1. 为了使用JUnit5的依赖关系
-
- やること
junit-vintage-engineを除外する(JUnit4が動くようにする依存のため)
Maven 的情况下:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
2. 在Gradle的情况下
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
2. 修正与JUnit4相关的描述
@RunWith が廃止された
対応 … 削除 or @ExtendWithに変更
@Test のimport元が変わった
対応前 … import org.junit.Test;
対応後 … import org.junit.jupiter.api.Test;
@Before が廃止された
対応 … @BeforeEach or @BeforeAllに変更
(仅提供一种选项)
以下是我参考的网站:
– Spring Boot 2.2 发布说明 · spring-projects/spring-boot Wiki · GitHub
– JUnit 5 用户指南