<spring-boot.version>2.6.13</spring-boot.version>和junit的那个版本能配置
时间: 2024-04-11 07:27:34 浏览: 227
spring boot Junit4配置
Spring Boot版本和JUnit版本之间的兼容性取决于具体的版本组合。在Spring Boot 2.6.13中,可以使用JUnit 5的以下版本之一:
- JUnit Jupiter:5.7.x 或更高版本
- JUnit Vintage:4.12.x 或更高版本(用于运行旧版JUnit 3和JUnit 4的测试)
你可以在你的项目中使用下面的依赖项来配置JUnit 5:
```xml
<dependencies>
<!-- Spring Boot Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.6.13</version>
</dependency>
<!-- JUnit Jupiter -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
<!-- JUnit Vintage (Optional) -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
```
这样,你就可以在Spring Boot 2.6.13项目中使用JUnit 5进行测试了。请确保在你的测试类中使用JUnit 5的注解来编写测试方法。
阅读全文