Search code examples
hamcrest

Using not operation in hamcrest


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?


Solution

  • You're almost there:

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