testNG生成测试报告
Posted up up!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了testNG生成测试报告相关的知识,希望对你有一定的参考价值。
testNG生成测试报告
- pom.xml文件
<dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity-dep</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> <!-- <scope>test</scope>--> </dependency> <dependency> <groupId>org.uncommons</groupId> <artifactId>reportng</artifactId> <version>1.1.2</version> <!-- <scope>test</scope>--> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>21.0</version> </dependency>
- idea配置
- testng.xml
<listeners> <listener class-name="org.uncommons.reportng.htmlReporter"/> </listeners>
以上是关于testNG生成测试报告的主要内容,如果未能解决你的问题,请参考以下文章
TestNG使用ExtentReports生成漂亮的测试报告
Allure+testNG(一):手把手教你用Allure生成优美的测试报告