Resharper 8和Test Explorer在VS2013中找不到xUnit测试

Kir*_*eed 6 resharper xunit xunit.net visual-studio-2013

我有以下测试代码.但无法在Test Explorer或Resharper中看到测试.我错过了什么?我已经公开了这个类,我尝试过清理项目,我在测试设置中尝试了两种默认体系结构.我正在运行Windows 7. xUnit 1.9.2,Resharper 8.1完整版

using Xunit;
namespace MonkeyFace.Specs.Registration
{
    public class ValidApplicationReceived
    {
        [Trait("A valid application is submitted","")]
        [Fact(DisplayName= "A user is added to the system")]
        public void User_is_Add_To_System()
        {
            Debug.Print("hi");
            Assert.Equal(1,1);
        }
Run Code Online (Sandbox Code Playgroud)

cit*_*att 12

你有安装的xunit ReSharper跑步机扩展吗?您需要从ReSharper - > Extension Manager安装它.

如果安装了,你在编辑器中看到了什么吗?用于表示测试的类或方法旁边的任何图标?