测试不起作用

时间:2018-05-25 12:31:24

标签: c# unit-testing xunit

我尝试在我的班级测试中添加一个新测试,但新方法不起作用。我使用xUnit和MOQ。

enter image description here

[Theory]
[Trait("Category", "Selecao")]
public void teste()
{
    Assert.Empty("");
}

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:7)

[Fact]替换为[Theory]

[Theory] [InlineData(3)] [InlineData(5)] [InlineData(6)] public void MyFirstTheory(int value) { Assert.True(IsOdd(value)); } 必须有testdata,如下所示:

[Fact]

对于[Fact] public void MyTest() { Assert.Empty(""); } ,这不是必需的,例如:

RUBY_VERSION

更多信息:http://xunit.github.io/docs/getting-started-desktop#write-first-theory