生成 TestNG 报告
我正在 testNG 中运行测试用例。默认情况下,它会在名为“test-output”的文件夹中生成结果,并在每次运行时覆盖该文件夹。我想在每次运行时创建单独的报告文件夹并放置我的结果。怎么做呢??
I am running Test cases in testNG. By default it is producing results in a folder called "test-output" and overriding that folder every time it runs. I want to create seperate report folder every time it runs and place my results. How to do tat.??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以配置输出目录,确切的答案将根据您使用的构建工具而有所不同(例如命令行:“-d”,ant:“outputdir”等)。
有关详细信息,请查阅构建工具的文档。
You can configure the output directory, the exact answer will vary depending on which build tool you use (e.g. command line: "-d", ant: "outputdir", etc...).
Look up the documentation of your build tool for the details.
好吧,我只是建议测试输出目录中包含的 html 报告的简单副本。这是我所做的:
Well, i would just suggest a simple copy of the html reports that are contained in the test-output directory. Here is what I do: