Easymock.and(int, int) 的用法是什么?
EasyMock 有预定义的参数匹配器 and(X first, X secondary)
文件说:
如果第一个和第二个中使用的匹配器都匹配,则匹配。适用于所有基本类型和对象。
但我不明白数字类型和匹配器的用例是什么。例如, and( int first, int secondary)
,如果first不等于second就没有意义,一个整数怎么能同时等于first和second,而first和second是不同的值呢?
EasyMock has predefined argument matcher and(X first, X second)
Document says:
Matches if the matchers used in first and second both match. Available for all primitive types and for objects.
But I don't understand what's the use case for the numberical type and matcher. For example, and(int first, int second)
, it's meaningless if first not equals to second, how can an integer equals both first and second while first and second are different value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重点是在 and 内部使用其他匹配器。就像 and(lt(8), gt(4))
The point is to use other matchers inside the and. Like and(lt(8), gt(4))