在Visual Studio 2015中使用xunit.runner.visualstudio
版本2.0.1時,測試的名稱顯示完全限定。有沒有辦法讓測試只顯示方法名稱?如何將XUnit配置爲只顯示Visual Studio 2015測試資源管理器中的方法名稱?
考慮以下測試: -
namespace MySolution.Tests
{
public class MyTestClass
{
[Fact]
public void ClassUnderTest_WhenDefaultConstructorUsed_SomePropertyIsNotNull()
{
*... test code in here*
}
}
}
在Test Explorer,這顯示爲: -
MySolution.Tests.MyTestClass.ClassUnderTest_WhenDefaultConstructorUsed_SomePropertyIsNotNull
使用的MSTest/VSTest這將顯示爲: -
ClassUnderTest_WhenDefaultConstructorUsed_SomePropertyIsNotNull
見一個低[答案](https://stackoverflow.com/a/41643793/1739931)爲__net-core__。 – THBBFT