问题标签 [reportunit]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
519 浏览

nunit - 如何将 ReportUnit 与 NUnit3 一起使用?

我检查了 ReportUnit,它只支持 NUnit 2 结果。我无法将 NUnit 3 结果与 ReportUnit 一起使用。

  1. 还有其他支持 NUnit 3 xml 文件的工具吗?
  2. 或者 ReportUnit 是否支持 NUnit 3?
0 投票
1 回答
5403 浏览

visual-studio - NUnit测试结果和reportunit

我目前在 Visual Studio 中使用 NUnit 来执行我的 Selenium 测试。我想要的是一些好的报告,我找到了 ReportUnit。

我似乎无法弄清楚 NUnit 将测试结果 xml 文件放在我机器上的什么位置。我不是技术专家,所以我正在努力找出如何让 ReportUnit 工作。我在这里找到了文档:http ://relevantcodes.com/reportunit/

但不能完全弄清楚如何在特定文件夹中获取我的测试结果文件,然后使用 ReportUnit 打开它们。

任何帮助表示赞赏。

亲切的问候,阿南德

0 投票
0 回答
317 浏览

nunit - 让 ReportUnit 显示附件

我有一个 NUNIT 测试套件,可以正确生成带有附件的 xml 文件,但找不到是否有办法让 ReportUnit 在呈现的 HTML 中显示这些附件。

示例 - TestResult.xml 包含:

当我在 Visual Studio 中使用名称结果和附件运行它时,它会显示出来

视觉工作室结果

但是当我在其上运行 ReportUnit 时,附件不显示(在通过测试或失败测试中。)

0 投票
1 回答
278 浏览

nunit-3.0 - 将 NUnit3 XML 合并为一个 HTML 以发布到 Jenkins

我有多个 testresult.xml(比如 testresultMachine1.xml、testresultMachin2.xml 等),通过在 Jenkins 管道构建期间在不同机器上运行我的 nunit3 测试得到。

现在,我想在主节点上合并这些 XML,并使用https://github.com/extent-framework/extentreports-dotnet-cli中的extent.exe 从多个 xml 生成单个合并的 html 报告。

但是,我观察到 extent.exe 为每个 testresult.xml 创建了一个单独的文件夹,例如一个名为 testresultMachine1、testresultMachine2 等的文件夹,其中每个文件夹都有自己的 index.html 和 dashboard.html。

如何获得单个合并的 index.html 和 dashboard.html?extent.exe 是否是正确的工具,因为 ReportUnit 已被弃用。