maven pom.xml如何识别非标准项目结构中的testng测试用例?

时间:2014-10-18 13:03:09

标签: java maven automated-tests testng pom.xml

我对maven和testng完全陌生。我使用maven作为构建工具,并使用testng作为我的测试框架。我没有遵循标准的maven项目结构。现在我希望我的pom.xml在我的项目中执行测试用例。问题是,pom.xml如何知道要考虑执行的测试用例是什么?

1 个答案:

答案 0 :(得分:1)

如果你把它放在一个地方你需要设置maven-surefire-plugin配置的testClassesDirectory参数:

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.17</version>
        <configuration>
          <testClassesDirectory>path/to/compiled test classes</testClassesDirectory>
        </configuration>
      </plugin>
    </plugins>
  </build>
  [...]
</project>

所有这些都在Maven Surefire Plugin Documentation

中有详细记载