生成 TestNG 报告

发布于 2024-10-25 18:42:40 字数 106 浏览 2 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假情假意假温柔 2024-11-01 18:42:40

您可以配置输出目录,确切的答案将根据您使用的构建工具而有所不同(例如命令行:“-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.

丘比特射中我 2024-11-01 18:42:40

好吧,我只是建议测试输出目录中包含的 html 报告的简单副本。这是我所做的:

1. Log output of my tests to "test-output/work/version/timestamp"
2. Email the emailable-report.html  using a Java SMTP mailer class
3.  Copy the 600KB of html report files into my "test-output
    /work/version/timestamp"  to archive the reports.  This isn't always
     necessary IMHO.

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:

1. Log output of my tests to "test-output/work/version/timestamp"
2. Email the emailable-report.html  using a Java SMTP mailer class
3.  Copy the 600KB of html report files into my "test-output
    /work/version/timestamp"  to archive the reports.  This isn't always
     necessary IMHO.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文