I have this code for checking if an object is equals to another one comparing all fields recursively using JUnit 5 and AssertJ:
assertThat(financialDataContainer2.getStandardisedBooking())
.isEqualToComparingFieldByFieldRecursively(initialBooking);
How can you have an assertion in AssertJ which is the negation of this one? Basically I want to be able to check if two objects are not equal by comparing recursively all fields.