在hamcrest中不使用操作

时间:2011-04-27 22:42:41

标签: hamcrest

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

assertThat(2 , isNot(3));

有什么办法吗?

2 个答案:

答案 0 :(得分:24)

你快到了:

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

答案 1 :(得分:11)

请务必导入它:

import static org.hamcrest.CoreMatchers.not;