当我不知道 Moq 中方法的参数是什么时,如何验证方法被调用
我需要验证是否调用了一个方法,但是它接收了一个我在设计时无法确定的参数对象。我不在乎参数是什么,我只想验证该方法是否被调用。
所以我想这样调用:
var subDao = new Mock<ISubscriptionSnapshotDao>();
subDao.Verify(x => x.Save(), Times.Exactly(1));
但是 ISubscriptionSnapshotDao.Save 需要一个对象来保存。
Save(Subscription entity);
有没有办法在不知道参数是什么的情况下验证是否已调用 Save?
I need to verify that a method is called, however it receives a parameter object which I can't determine at design time. I don't care what the parameter is, I just want to verify that the method is called.
So I would like to call something like this:
var subDao = new Mock<ISubscriptionSnapshotDao>();
subDao.Verify(x => x.Save(), Times.Exactly(1));
However ISubscriptionSnapshotDao.Save takes an object to save.
Save(Subscription entity);
Is there a way verify that Save has been called without knowing what the parameter will be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有!如果您知道该方法所需的参数类型。
尝试以下操作
Yes there is! If you know the Type of parameter the method expects.
Try the following