gpt4 book ai didi

java - mvn 集成测试与 mvn 故障安全 :integration-test

转载 作者:行者123 更新时间:2023-12-01 15:12:32 26 4
gpt4 key购买 nike

当我使用 Maven 故障安全插件运行集成测试时遇到问题。我有两个类,一个是 TestUnitTest.java,另一个是 TestIntegrationIT.java。在pom.xml中,我配置如下:

<plugin>                
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IT.java</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>unit-tests</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
</executions>
</plugin>

当我运行 mvn:integration-test 时,将执行这两个测试,当我运行 mvn failuresafe:integration-test 时,将仅运行“TestIntegrationIT”。为什么输出不同的结果?

最佳答案

包含maven-surefire-plugin定义如 *Test、*TestCase 而 maven-failsafe-plugin使用 IT.java、IT.java 或 *ITCase.java 定义。因此,您不需要为 maven-surefire-plugin 或 maven-failsafe-plugin 定义包含,使用默认值。如果您不想命名集成测试,只需将其命名为 NameIT.java,而单元测试可以命名为 NameTest.java。要运行单元测试和/或集成测试,您应该使用生命周期:

mvn package

它将运行单元测试,而

mvn verify

将运行单元测试和集成测试。

关于java - mvn 集成测试与 mvn 故障安全 :integration-test,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12136827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com