如何不有条件地显示测试

时间:2019-04-05 06:24:52

标签: c# nunit

我的代码中有一些测试对于某些类型无效,例如,类型T1,类型T2 ..,并且我不想在测试资源管理器中显示对特定类型无效的那些测试。

例如:

// this test is not valid for type T1, so I don't want to display this test in Test Explorer when the T1 is enabled.
[Test]
[Ignore test if type == "T1"]
public void testSomeParameter() 
{
}

有人可以建议如何实现这一目标吗?

0 个答案:

没有答案