Question

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?

Was it helpful?

Solution

You're almost there:

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

OTHER TIPS

Be sure you import it:

import static org.hamcrest.CoreMatchers.not;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top