如何使用 XUnit 控制台输出 NUnit 格式的 xml?

发布于 2024-10-08 01:34:32 字数 328 浏览 1 评论 0原文

我需要 XUnit 测试的 NUnit 输出来生成报告。使用 NUnit 我可以这样做:

nunit-console.exe /xml=c:\TestResultN.xml MyDll.dll

我已经尝试过:

xunit.console MyDll.dll /nunit TestResults.xml

但我得到:

unknown output transform: nunit

xunit 控制台上有什么好的文档吗?我找不到任何信息。

I need NUnit output from XUnit tests for a report. With NUnit I can do:

nunit-console.exe /xml=c:\TestResultN.xml MyDll.dll

I've tried:

xunit.console MyDll.dll /nunit TestResults.xml

but I get:

unknown output transform: nunit

Any good docs on xunit console? I can't find any info.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

要走就滚别墨迹 2024-10-15 01:34:32

在控制台中输入 xunit.console.exe /? 并查看选项列表的末尾。

> xunit.console.exe /?
xUnit.net console test runner (64-bit .NET 2.0.50727.4952)
Copyright (C) 2007-10 Microsoft Corporation.

usage: xunit.console <xunitProjectFile> [options]
usage: xunit.console <assemblyFile> [configFile] [options]

Valid options:
  /silent                : do not output running test count
  /teamcity              : forces TeamCity mode (normally auto-detected)
  /wait                  : wait for input after completion

Valid options for assemblies only:
  /noshadow              : do not shadow copy assemblies
  /xml <filename>        : output results to Xunit-style XML file
  /html <filename>       : output results to HTML file
  /nunit <filename>      : output results to NUnit-style XML file

最后两个选项是从配置文件中提取的,由应用于 xunit 输出的 xslt 文件组成。如果 /nunit 不存在,请确保 xunit 目录中有 NUnitXml.xslt 文件,并且条目 nunit 已在xunit.console.exe.config 文件。

我的 xunit.console.exe.config 文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <configSections>
    <section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console"/>
  </configSections>

  <xunit>
    <transforms>
      <add
        commandline="html"
        xslfile="HTML.xslt"
        description="output results to HTML file"/>
      <add
        commandline="nunit"
        xslfile="NUnitXml.xslt"
        description="output results to NUnit-style XML file"/>
    </transforms>
  </xunit>

</configuration>

如果您找不到这些文件,您可能需要重新安装 xunit。

Type xunit.console.exe /? in a console and look at the end of the option list.

> xunit.console.exe /?
xUnit.net console test runner (64-bit .NET 2.0.50727.4952)
Copyright (C) 2007-10 Microsoft Corporation.

usage: xunit.console <xunitProjectFile> [options]
usage: xunit.console <assemblyFile> [configFile] [options]

Valid options:
  /silent                : do not output running test count
  /teamcity              : forces TeamCity mode (normally auto-detected)
  /wait                  : wait for input after completion

Valid options for assemblies only:
  /noshadow              : do not shadow copy assemblies
  /xml <filename>        : output results to Xunit-style XML file
  /html <filename>       : output results to HTML file
  /nunit <filename>      : output results to NUnit-style XML file

The last two options are extracted from the config file and consist of a xslt file applied to the output of xunit. If /nunit is not present, make sure that you have the NUnitXml.xslt file in the xunit directory and the entry nunit is declared in the xunit.console.exe.config file.

My xunit.console.exe.config file :

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <configSections>
    <section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console"/>
  </configSections>

  <xunit>
    <transforms>
      <add
        commandline="html"
        xslfile="HTML.xslt"
        description="output results to HTML file"/>
      <add
        commandline="nunit"
        xslfile="NUnitXml.xslt"
        description="output results to NUnit-style XML file"/>
    </transforms>
  </xunit>

</configuration>

If you're not able to find theses files, you might need to reinstall xunit.

懒猫 2024-10-15 01:34:32

首先点击此链接。
https://xunit.net/docs/getting-started/netfx/visual- studio

然后从主项目文件夹中打开 cmd,如上面链接所述。
打开 xunit.console.exe 的文件位置

,在 cmd 中运行以下命令:

....\packages\xunit.runner.console.2.4.1\tools\net472\xunit.console.exe Project.UnitTests\bin\Debug\Project.UnitTests.dll -xml test_ouput.xml 

输出结果“test_ouput.xml”将保存在项目目录中。

First follow this link.
https://xunit.net/docs/getting-started/netfx/visual-studio

then open cmd from your main project folder as described in above link.
open file location of xunit.console.exe

run below command in cmd :

....\packages\xunit.runner.console.2.4.1\tools\net472\xunit.console.exe Project.UnitTests\bin\Debug\Project.UnitTests.dll -xml test_ouput.xml 

Output result "test_ouput.xml" will be saved in project directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文