欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用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>
相关标签: 零碎知识