reportiNG 不生成测试输出文件夹
reportNG does not generate the test-ouput foler
我正在使用带有reportNG插件的testNG来测试结果。
在 eclipse testNG 设置中,我禁用了 testNG 报告作为默认侦听器并添加了 reportNG。
当我右键单击该项目并 运行 作为 testNG 时,我可以看到创建的 test-output/html 文件夹中包含测试结果。
但是这个应该使用默认的testng.xml.
如果我手动创建 testng.xml 并右键单击它,select 运行 作为 testNG 套件,我可以看到 运行ning 已通过,但找不到test-output/html 文件夹已生成。
任何人都可以告诉我是什么原因,在哪里配置它,我想这可能只是 testNG 设置的一些问题,但现在确定在哪里。
非常感谢你的帮助。
反对。我尝试添加
<listeners>
<listener class-name="org.uncommons.reportng.HTMLReporter" />
</listeners>
进入我手动创建的testng.xml。现在有效。
我正在使用带有reportNG插件的testNG来测试结果。 在 eclipse testNG 设置中,我禁用了 testNG 报告作为默认侦听器并添加了 reportNG。
当我右键单击该项目并 运行 作为 testNG 时,我可以看到创建的 test-output/html 文件夹中包含测试结果。 但是这个应该使用默认的testng.xml.
如果我手动创建 testng.xml 并右键单击它,select 运行 作为 testNG 套件,我可以看到 运行ning 已通过,但找不到test-output/html 文件夹已生成。
任何人都可以告诉我是什么原因,在哪里配置它,我想这可能只是 testNG 设置的一些问题,但现在确定在哪里。
非常感谢你的帮助。
反对。我尝试添加
<listeners>
<listener class-name="org.uncommons.reportng.HTMLReporter" />
</listeners>
进入我手动创建的testng.xml。现在有效。