"tests are skipped" message in Maven Thucydides Framework using JUnit

920 views Asked by At

When I exceute my testcase in command prompt(-Dmaven.test.failure.ignore=false) "Tests are skipped" message is displaying. Some one please help me to sort this issue.

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>
0

There are 0 answers