在 hamcrest 中使用 not 操作
我最近试图在一项测试中断言不平等。但是我无法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你就快到了:
You're almost there:
确保导入它:
Be sure you import it: