当我在命令提示符下执行我的测试用例时(-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>