使用maven运行testng文件时,提示 no tests to run
程序员文章站
2022-06-01 11:06:48
...
首先,使用maven结合testng文件时,需要在pom文件中添加
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src/main/resources/testng.xml</suiteXmlFile>(此处要注意一定是需要写你的testng的路径,否则会出错)
</suiteXmlFiles>
</configuration>
</plugin>
上一篇: 学习Numpy,看这篇文章就够啦
下一篇: 初学Python语言者必须理解的下划线