如何在方法设置中对数组进行 Moq It.IsAny?
我是 Moq 的新手(使用 v 4),并且在文档方面遇到了一些困难。
我想做的是 Moq 一个接受字节数组并返回对象的方法。类似这样的:
decoderMock.Setup(d => d.Decode(????).Returns(() => tagMock.Object);
???是 byte[] 应该在的位置,但我不知道如何制作它,这样我就不关心字节数组中的内容,只需返回我已经设置的模拟对象。
Moq.It.IsAny 需要一个泛型。
有什么帮助吗?
I'm brand new to Moq (using v 4) and am struggling a little with the documentation.
What I'm trying to do is to Moq a method that takes a byte array and returns an object. Something like:
decoderMock.Setup(d => d.Decode(????).Returns(() => tagMock.Object);
The ???? is where the byte[] should be, but I can't work out how to make it so that I don't care what's in the byte array, just return the mocked object I've already set up.
Moq.It.IsAny expects a generic.
Any help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
??
??
带有参数数组的设置方法
Setup Method With Params Array