xunit配置不起作用



我在单元测试项目中添加了一个App.config文件,如问题中所建议的

<configuration>
  <appSettings>
    <add key="xunit.methodDisplay" value="method"/>
  </appSettings>
</configuration>

但是在VisualStudio中,TestExplorer仍然显示全名。

我正在运行:

Visual Studio 2013终极版12.0.40629.00更新5

x机组转轮[xUnit.net [Runner: Visual Studio] 2.1.0][2]

您需要在测试项目中创建xunit.runner.json
并添加选项methodDisplay
例如我的xunit.runner.json

{
   "methodDisplay": "method"
}

关于您可以阅读的所有选项https://xunit.github.io/docs/configuring-with-json.html
这是我的VS2015 的工作

相关内容

  • 没有找到相关文章

最新更新