Reputation:
This method seems to be Deprecated. I would really appreciate it if you could tell me what AssertJ advises to use instead.
Upvotes: 10
Views: 8816
Reputation: 2257
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);
Upvotes: 28