gpt4 book ai didi

java - 从 Jenkins(Maven 项目)执行 TestNG.xml

转载 作者:行者123 更新时间:2023-12-04 14:27:52 26 4
gpt4 key购买 nike

  1. 我的项目没有 bin 文件夹
  2. 尝试过以下方法:

D:>java -cp "Pathtolibfolder\lib*;Pathtobinfolder\bin" org.testng.TestNG testng.xml

有什么想法吗?

最佳答案

如果您使用的是 Maven,那么我会简单地使用 surefire 插件并在构建过程中运行测试:

<plugins>

...

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>RELEASE</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>

...

</plugins>

只需指定 testng.xml 的路径,如果可以使用这种配置,就可以利用它。它允许大量的参数化,我在我的项目中广泛使用了它。

查看本教程以掌握它:http://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html

关于java - 从 Jenkins(Maven 项目)执行 TestNG.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41703574/

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