作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="SuiteName" verbose="1" >
<test name="TestName1" >
<classes>
<class name="NoPackageTest" />
</classes>
</test>
<test name="TestName2">
<classes>
<class name="test.sample.ParameterSample"/>
<class name="test.sample.ParameterTest"/>
</classes>
</test>
</suite>
谁能告诉我如何在 maven-surefire-plugin 中指定 SuiteName、TestName1 和 TestName2。
提前致谢
最佳答案
设置surefire运行你的套件就足够了,它会依次运行所属的测试类,你可以通过如下配置来完成
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<includes>
<include>**/SuiteName.java</include>
</includes>
</configuration>
</plugin>
关于maven - 如何在 maven-surefire-plugin 中指定测试和套件名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28014209/
我是一名优秀的程序员,十分优秀!