如何期望 Mock 方法被称为“Any”? Groovy 中的次数
我无法在 Groovy 的 MockFor 对象中找到一种正式的方法来定义可以像 EasyMock 中那样调用任意次数的预期调用,使用 anyTimes()
我知道我可以定义一个范围 '1 ..999',我会涵盖我想要的内容,但我想知道是否有这样的“anyTimes()”方法可用,因为我在谷歌上找不到任何对它的引用。
谢谢
I can't find a formal way in Groovy's MockFor object to define an expected call that can be called any number of times as in EasyMock, using anyTimes()
I know I could define a range of '1..999' and I would be covering what I want, but I wonder if there is such a "anyTimes()" method available, as I couldn't find any reference to it with Google.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,据我所知,你不能指定无限范围。
No, to my knowledge, you can not specify and infinite range.
谢谢你们俩。 Groovy Mocks 中似乎没有这样的功能。不管怎样,使用足够宽的范围来满足预期的调用是可行的。
Thank you both. It seems there is no such a functionality in Groovy Mocks. Anyway, using a wide enough range for expected calls works out.