This method seems to be Deprecated. I would really appreciate it if you could tell me what AssertJ advises to use instead.
What to use instead of AssertJ isEqualToIgnoringGivenFields?
As mentioned in the javadoc:
Use the recursive comparison by calling
usingRecursiveComparison()
and chain withignoringFields(String...)
.This method is deprecated because it only compares the first level of fields while the recursive comparison traverses all fields recursively (only stopping at java types).
assertThat(oneObject)
.usingRecursiveComparison()
.ignoringFields("fieldToIgnore")
.isEqualTo(anotherObject);
© 2022 - 2024 — McMap. All rights reserved.