为什么我的集成测试没有执行?

Why are my integration tests not executed?

我分别使用surefire和failsafe来执行单元测试,集成测试。所有测试都位于文件夹 src/test/java 中。到目前为止,我有一个集成测试 class TaskAdditionIT.java,当所有单元测试都是 运行 时,它的测试方法(用 @Test 注释)从未执行过。这是我的 pom.xml:

的摘录
<plugin>                                          
    <groupId>org.apache.maven.plugins</groupId>   
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.18.1</version>                     
</plugin>                                         
<plugin>                                          
    <groupId>org.apache.maven.plugins</groupId>   
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.18.1</version>                     
    <configuration>                               
        <executions>                              
            <execution>                           
                <goals>                           
                    <goal>integration-test</goal> 
                    <goal>verify</goal>           
                </goals>                          
            </execution>                          
        </executions>                             
    </configuration>                              
</plugin>   

我使用 Maven 目标 verify 来 运行 测试。

解决方案:

不要在 configuration 中嵌套 executions:

<plugin>                                          
    <groupId>org.apache.maven.plugins</groupId>   
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.18.1</version>                              
    <executions>                              
        <execution>                           
            <goals>                           
                <goal>integration-test</goal> 
                <goal>verify</goal>           
            </goals>                          
        </execution>                          
    </executions>                              
</plugin>