如何使用C#在MSTest中获取所选测试用例的列表

时间:2019-07-11 12:08:56

标签: c# mstest testcontext

我正在尝试检索要在 ClassInitialize 中运行的所选测试的列表。你能帮忙吗?

[ClassInitialize]
public void classInitialize()
{
    String name=TestContext.CurrentContext.Test.MethodName;
}

使用上面的代码,我只能获取当前正在运行的测试用例。

[ClassInitialize]
public void ClassInitialize()
{
    //Need to get the list of the selected test to run.
}

实际:我无法检索选定的测试。

预期的:应该运行的测试列表的列表。

0 个答案:

没有答案