Junit-vintage-engine和junit-jupiter-engine之间的区别?
2022-09-01 13:09:38
这是一个双重问题。
- 和 有什么区别?
junit-vintage-engine
junit-jupiter-engine
- SpringBoot入门项目附带了.是为了强制使用朱尼特木星发动机吗?
junit-vintage-engine
以下是我的SpringBoot项目的依赖关系,该项目由Spring Initializr生成:
<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>