如何选择要使用 Maven 执行的 JUnit5 标签
我刚刚将我的解决方案升级到使用 JUnit5。现在尝试为我的测试创建具有两个标记的标记:和 。首先,我使用了下面的 maven 条目来配置要使用默认生成运行的测试。这意味着当我执行时,只有我的快速测试才会执行。我假设我可以使用命令行覆盖它。但是我不知道我会输入什么来运行我的慢速测试....@Fast
@Slow
mvn test
我以为像...... 这不起作用mvn test -Dmaven.IncludeTags=fast,slow
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<properties>
<includeTags>fast</includeTags>
<excludeTags>slow</excludeTags>
</properties>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.0.0-M3</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.0-M3</version>
</dependency>
</dependencies>
</plugin>