如何使用maven调试系统测试?

时间:2013-07-09 05:54:41

标签: maven testing maven-3

我写了一个系统测试(使用junit)来测试我的工作流程。 我是怎么做到的,

mvn clean install -Psystemtest

这将运行所有系统测试,我拥有的。 现在我想一次只调试一个系统测试。

有没有办法做到这一点?

这是'failsafe-plugin'

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

0 个答案:

没有答案