如何为maven项目运行集成测试用例

时间:2016-11-15 08:04:05

标签: java maven junit integration-testing jmockit

我写了maven project。 我正在使用junitjmockit来编写单元测试和模拟。

我想为同一个项目写Integration test

我应该使用plugin以及我需要做什么configuration

感谢。

1 个答案:

答案 0 :(得分:5)

你可以这样做

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