gpt4 book ai didi

c# - 使用 Nsubstitute 进行模拟但出现错误

转载 作者:太空宇宙 更新时间:2023-11-03 23:39:46 24 4
gpt4 key购买 nike

我是单元测试的新手,如果我无法正确解释这个问题,请原谅我。我正在阅读一本书“单元测试的艺术第 2 版”并尝试在我的项目中实现单元测试。我目前在使用模拟(使用 NSubstitute 作为模拟框架)进行测试时感到困惑或困惑。

这是我的场景:

我有两个接口(interface) ICommandIUser

 public interface ICommand
{
string execute();
}

public interface IUserCalendar
{
string LoadCalendar();
}

我有一个 LoadCalendar 类,它实现了 ICommand:

public class LoadCalendar : ICommand
{
private IUserCalendar user;

public string execute()
{
return this.user.LoadCalendar();
}

public LoadCalendar(IUserCalendar obj)
{
this.user = obj;
}
}

ViewCalendar 实现 IUserCalendar:

public class Viewer : IUserCalendar
{
public string LoadCalendar()
{
return "Viewer Load Calendar Called";
}
}

使用代理类,我正在为特定请求调用命令。 (这里我只为一个用户查看器显示一个请求 LoadCalendar 但我有更多的命令和更多的用户)

我的客户端有一个调用程序对象,它为特定用户调用命令。

 public class Client
{
public Client()
{ }

public string LoadCalendar(ICommand cmd)
{
Invoker invoker = new Invoker(cmd);
return invoker.execute();
}
}

现在我想测试客户端类,当它调用特定用户时它应该返回正确的对象或消息。

[Test]
public void client_Load_Calendar_Administrator()
{
IUserCalendar calanedar = Substitute.For<IUserCalendar>();
ICommand cmd = Substitute.For<ICommand>(calanedar);

Client c = new Client();
c.LoadCalendar(cmd, calanedar).Returns(Arg.Any<string>());
}

我不知道我哪里做错了,它抛出了一个错误。

NSubstitute.Exceptions.SubstituteException : Can not provide constructor arguments when substituting for an interface.

非常感谢任何帮助。抱歉,问题很长。

最佳答案

你得到的错误:

Can not provide constructor arguments when substituting for an interface.

准确地告诉你哪里出了问题。

您在这里传递构造函数参数:

ICommand cmd = Substitute.For<ICommand>(calanedar);

当然,接口(interface)从来没有构造函数。您正在尝试与 ICommand 接口(interface)进行交互,就好像它是您的具体 LoadCalendar 实现一样。

此外,为了能够对类进行单元测试,您总是希望有一个默认(无参数)构造函数。许多模拟框架实际上需要这个。

在这种情况下,您可能应该针对具体类进行测试并模拟/替换使用的类。

要么那样,要么您只替换 ICommand 只是让它返回一个预设(字符串)值。然后您可以继续验证使用您的命令的代码是否实际调用它和/或使用它返回的值执行正确的操作。

举例说明:

[Test]
public void client_Load_Calendar_Administrator()
{
// You are substituting (mocking) the IUserCalendar here, so to test your command
// use the actual implementation
IUserCalendar calendar = Substitute.For<IUserCalendar>();

ICommand cmd = new LoadCalendar(calendar):

// Let the IUserCalendar.LoadCalendar() return a certain string
// Then Assert/Verify that cmd.Execute() returns that same string
}

这就是单元测试的要点:您通过模拟所有依赖项来测试最小的功能片段。否则就是集成测试。

测试你的客户端:

[Test]
public void client_Load_Calendar_Administrator()
{
ICommand cmd = Substitute.For<ICommand>();

Client c = new Client();
// Let your command return a certain string
// Then verify that your calendar returns that same string
}

编辑:如果您有兴趣,the method in NSubstitute that throws this exception :

private void VerifyNoConstructorArgumentsGivenForInterface(object[] constructorArguments)
{
if (constructorArguments != null && constructorArguments.Length > 0)
{
throw new SubstituteException("Can not provide constructor arguments when substituting for an interface.");
}
}

他们对此非常清楚:无论如何,接口(interface)替代品都没有构造函数参数。

关于c# - 使用 Nsubstitute 进行模拟但出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29474546/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com