//junit-jupiter的聚合包
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
//此包用与兼容老版本(可选)
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
https://blog.youkuaiyun.com/ryo1060732496/article/details/80792246
本文详细介绍了如何在项目中配置junit-jupiter 5.6.2版本,包括其依赖项和可选的兼容老版本的junit-vintage-engine包。这对于希望更新或开始使用JUnit 5进行单元测试的开发者来说是一个实用的指南。
822

被折叠的 条评论
为什么被折叠?



