带构造函数参数的起订量

发布于 2024-12-08 11:46:16 字数 278 浏览 0 评论 0原文

我有一个如下所示的工厂:

public IFoo GetFoo(IFile file)
{
  return _kernel.Get<IFoo>(new ConstructorArgument("file", file));
}

它工作正常,直到我使用 Moq 来模拟 IFoo。在模拟中,没有名为 file 的构造函数参数,并且我收到 Ninject.ActivationException。

我应该如何解决这个问题?

I have a factory that looks like below:

public IFoo GetFoo(IFile file)
{
  return _kernel.Get<IFoo>(new ConstructorArgument("file", file));
}

It works fine until I use Moq to mock IFoo. In the mock there is no constructor argument named file, and I get a Ninject.ActivationException.

How should I solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

離人涙 2024-12-15 11:46:16

您应该在测试期间嘲笑您的工厂。希望“GetFoo”方法是工厂接口的一部分。模拟工厂,然后您可以设置工厂以返回您想要的任何 IFoo(测试 IFoo 或模拟 IFoo)。

You should be mocking your factory during testing. Hopefully, the "GetFoo" method is part of your factory interface. Mock the factory and then you can set up the factory to return whatever IFoo you want (a test IFoo or perhaps a mock IFoo).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文