命令 mvn test 好像找不到 JUnit5 参数化测试
Command mvn test seems not find JUnit5 parameterized test
我正在尝试使用命令 mvn test
在 Maven 上执行我的 JUnit5 测试。我在 pom 上添加了 maven-surefire-plugin,如下所示:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
我的测试在四个 类 中实施,命名为:
IOTest.java
OperationTest.java
TaskTest.java
UtilityTest.java
测试从 Eclipse 中正确执行,但是当我从 shell 和 mvn test
运行 它们时,只执行带有 @Test
注释的那些,而那些带有注释的@ParameterizedTest
好像不可见。
我认为您缺少范围,请尝试在依赖项中添加范围,如下所示
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
我正在尝试使用命令 mvn test
在 Maven 上执行我的 JUnit5 测试。我在 pom 上添加了 maven-surefire-plugin,如下所示:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
我的测试在四个 类 中实施,命名为:
IOTest.java
OperationTest.java
TaskTest.java
UtilityTest.java
测试从 Eclipse 中正确执行,但是当我从 shell 和 mvn test
运行 它们时,只执行带有 @Test
注释的那些,而那些带有注释的@ParameterizedTest
好像不可见。
我认为您缺少范围,请尝试在依赖项中添加范围,如下所示
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>