我在Nunit单元测试中看到了以下代码
var controllerDescriptor = Substitute.For<HttpControllerDescriptor>();
使用MS Test的等效代码是什么?
答案 0 :(得分:3)
该代码段适用于NSubstitute模拟框架,与NUnit单元测试框架无关。
MS Test也是一个测试框架,所显示的代码对于Nunit或MS Test也运行相同的代码。
[TestClass]
public class MytestClass {
[TestMethod]
public void MyTest() {
var controllerDescriptor = Substitute.For<HttpControllerDescriptor>();
//...
}
}