我在testNG中运行测试用例。默认情况下,它会在名为“test-output”的文件夹中生成结果,并在每次运行时覆盖该文件夹。我想在每次运行时创建单独的报告文件夹并放置我的结果。怎么做。??
答案 0 :(得分:0)
您可以配置输出目录,具体答案将根据您使用的构建工具而有所不同(例如命令行:“ - d”,ant:“outputdir”等等。)
查看构建工具的文档以获取详细信息。
答案 1 :(得分:0)
好吧,我只是建议一个包含在test-output目录中的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.