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