How can XUnit be configured to show just the method name in the Visual Studio 2015 Test Explorer?

核能气质少年 提交于 2019-11-27 12:02:07
Brad Wilson

Set xunit.methodDisplay in your App.config file.

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

Taken from http://xunit.github.io/docs/configuring-with-xml.html

lorengphd

You can also add it with json.

In root directory of your test project add a file called "xunit.runner.json".

Right-click the file, properties. Select "Copy if newer" for copy to Output directory.

Then in the file enter this json:

{
  "methodDisplay": "method"
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!