在 hamcrest 中使用 not 操作

发布于 2024-11-03 14:10:39 字数 137 浏览 1 评论 0原文

我最近试图在一项测试中断言不平等。但是我无法在 hamcrest 找到合适的匹配器。 我理想中想做的是类似的事情。

assertThat(2 , isNot(3));

有什么办法可以做到吗?

I was recently trying to assert the inequality in one of the test. However I wasnt able to find the appropriate matcher in hamcrest.
What I ideally want to do is something like.

assertThat(2 , isNot(3));

Is there any way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

难以启齿的温柔 2024-11-10 14:10:39

你就快到了:

assertThat(2 , is(not(3)));

You're almost there:

assertThat(2 , is(not(3)));
韶华倾负 2024-11-10 14:10:39

确保导入它:

import static org.hamcrest.CoreMatchers.not;

Be sure you import it:

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