我希望Maven在遇到第一个错误时停止尝试运行我的JUnit Spring测试。这可能吗?
我的测试类如下所示,我将它们作为标准Maven目标运行。
@ContextConfiguration(locations = {"classpath:/spring-config/store-persistence.xml","classpath:/spring-config/store-security.xml","classpath:/spring-config/store-service.xml", "classpath:/spring-config/store-servlet.xml" })
@RunWith(SpringJUnit4ClassRunner.class)
@Transactional
public class SkuLicenceServiceIntegrationTest
{
...
如果Spring配置中有错误,那么每个测试都会尝试重启Spring上下文,这需要20秒。这意味着我们没有发现任何测试失败的年龄,因为它会在得出构建失败之前尝试运行整个批次!
答案 0 :(得分:1)
这更像是一个评论,而不是一个答案,但是,你可能会觉得它很有用。
我建议将集成测试分成一个单独的阶段,并使用Failsafe而不是Surefire运行它们。通过这种方式,您可以决定是仅需要运行快速单元测试,还是需要运行长期集成测试的完整集:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<!-- Uncomment/comment this in order to fail the build if any integration test fail -->
<execution>
<id>verify</id>
<goals><goal>verify</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
您的问题的解决方法可能是将测试单独执行并先运行它;这样执行将失败,并且将不会启动后续的surefire / failsafe执行。请参阅how to configure the plugin to do it。