我尝试在我的班级测试中添加一个新测试,但新方法不起作用。我使用xUnit和MOQ。
[Theory]
[Trait("Category", "Selecao")]
public void teste()
{
Assert.Empty("");
}
答案 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