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

时间:2010-12-13 17:21:25

标签: xunit

我需要XUnit测试的NUnit输出报告。使用NUnit我可以做到:

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

我试过了:

xunit.console MyDll.dll /nunit TestResults.xml

但我明白了:

unknown output transform: nunit

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

2 个答案:

答案 0 :(得分:20)

在控制台中键入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。

答案 1 :(得分:0)

首先点击此链接。 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”将保存在项目目录中。