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?
You're almost there:
assertThat(2 , is(not(3)));
Be sure you import it:
import static org.hamcrest.CoreMatchers.not;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With