class Person {
private List<Phone> phones;
}
class Phone {
private String number;
}
assertThat(result).usingRecursiveComparison()
.ignoringCollectionOrder()
.isEqualTo(expectedPerson);
The expectedPerson
has the same number of phones and phone numbers, but the test fails because the list reference is not the same. If I recall correctly, usingRecursiveComparison
would only compare value. So why here it fails?
Unfortunatelly, was not able to reproduce your problem.
I suppose, it might be some version conflicts or other environment issues. For example, following snippet is working as expected:
pom.xml
: