Easymock.and(int, int) 的用法是什么?

发布于 2024-10-05 05:26:41 字数 409 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不喜欢何必死缠烂打 2024-10-12 05:26:41

重点是在 and 内部使用其他匹配器。就像 and(lt(8), gt(4))

The point is to use other matchers inside the and. Like and(lt(8), gt(4))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文