我的代码中有一些测试对于某些类型无效,例如,类型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()
{
}
有人可以建议如何实现这一目标吗?