0

我正在使用带有reportNG插件的testNG来测试结果。在 eclipse testNG 设置中,我禁用了 testNG 报告作为默认侦听器并添加了 reportNG。

当我右键单击该项目并以 testNG 身份运行时,我可以看到其中包含测试结果的 test-output/html 文件夹。但这应该使用默认的 testng.xml。

如果我手动创建 testng.xml 并右键单击它,选择作为 testNG 套件运行,我可以看到运行通过,但找不到生成的 test-output/html 文件夹。

谁能告诉我是什么原因,在哪里配置它,我想这可能只是 testNG 设置的一些问题,但现在确定在哪里。

我会感谢你的帮助。

4

1 回答 1

0

哎呀。我试图添加

<listeners>
    <listener class-name="org.uncommons.reportng.HTMLReporter" />
  </listeners>

进入我手动创建的 testng.xml。现在工作。

于 2016-02-24T05:03:55.360 回答