当我在命令提示符(-Dmaven.test.failure.ignore = false)中超越我的测试用例时,"跳过测试"消息正在显示。有人请帮我解决这个问题。
POM - maven-surefire-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>testSuite</name>
<value>${testSuite}</value>
</property>
</systemProperties>
<skip>true</skip>
</configuration>
</plugin>