我有以下测试代码。但无法在测试资源管理器或Resharper中看到测试。 我错过了什么?我已经公开课,我已经尝试清理项目,我已经在测试设置中尝试了两种默认体系结构。我运行Windows 7的xUnit 1.9.2,ReSharper的8.1完整版Resharper 8和测试资源管理器在VS2013中找不到xUnit测试
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);
}
请务必阅读选择标签时出现的说明! – Charles