如何在 IntegrationTest 中使用 NSubstitute 进行模拟

How to mock with NSubstitute in IntegrationTest

我有一个 ContainerFixture class 在我的集成测试中使用,如下所示:

services.AddSingleton(Mock.Of<IWebHostEnvironment>(w =>
 w.EnvironmentName == "Development" &&
 w.ApplicationName == "Application.WebUI"));

在上面的示例中,我使用的是 Moq,但我想使用 NSubstitute。

当我用 Substitute.For 替换 Mock.of 时,出现以下错误:

services.AddSingleton(Substitute.For<IWebHostEnvironment>(w =>
 w.EnvironmentName == "Development" &&
 w.ApplicationName == "Application.WebUI"));

Error: Cannot convert lambda expression to the type 'object' because it is not of a delegate type.

上面的例子应该如何使用Substitute?

.For 的参数在 NSubstitute 中作为构造函数参数传递。这对于用虚拟成员替换 类 可能很有用。

另见 the code of Substitute

public static T For<T>(params object[] constructorArguments) 

N 中等效于您的示例:

var env = Substitute.For<IWebHostEnvironment>();
env.EnvironmentName.Returns("Development");
env.ApplicationName.Returns("Application.WebUI");
services.AddSingleton(env);