相当于Nunits替代品的MS测试

时间:2018-11-14 15:50:22

标签: c# .net nunit mstest

我在Nunit单元测试中看到了以下代码

        var controllerDescriptor = Substitute.For<HttpControllerDescriptor>();

使用MS Test的等效代码是什么?

1 个答案:

答案 0 :(得分:3)

该代码段适用于NSubstitute模拟框架,与NUnit单元测试框架无关。

MS Test也是一个测试框架,所显示的代码对于Nunit或MS Test也运行相同的代码。

[TestClass]
public class MytestClass {
    [TestMethod]
    public void MyTest() {
        var controllerDescriptor = Substitute.For<HttpControllerDescriptor>();

        //...
    }    
}