我写了一个系统测试(使用junit)来测试我的工作流程。我是如何运行的,
mvn clean install -Psystemtest
这将运行我所拥有的所有系统测试。现在我想一次只调试一个系统测试。
有没有办法做到这一点?
这是“故障安全插件”
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<id>failsafe-integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/systemtest-testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</execution>
</executions>
</plugin>