带构造函数参数的起订量
我有一个如下所示的工厂:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在测试期间嘲笑您的工厂。希望“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).