junit-jupiter-api 依赖
时间: 2024-01-11 13:02:24 浏览: 138
junit-jupiter-api-5.7.2-API文档-中文版.zip
5星 · 资源好评率100%
junit-jupiter-api 是 JUnit 5 中提供的一个测试引擎,它是编写基于 JUnit 5 的测试用例所必需的依赖之一。在 Maven 中,可以通过以下方式将其添加到项目的依赖中:
```xml
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.2</version>
<scope>test</scope>
</dependency>
```
在 Gradle 中,可以通过以下方式将其添加到项目的依赖中:
```groovy
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
```
阅读全文