Hello,
we stumbled across the fact none of the DTOs are implementing equals and hashCode (and toString).
Currently we are forced to use org.apache.commons.lang3.builder.ToStringBuilder.reflectionToString(Object) and org.mockito.ArgumentMatchers.refEq(T, String...) etc. to test our code and to generate log output.
So we wonder, if there is a particular reason for that fact?
Regards