My understanding of "best practices" when using an automatic mapping tool like ModelMapper is to have unit tests for any source->destination map that occurs in your code, to be sure the mapping is doing what you expect.
Is there any code coverage/static analysis tools that would assist in determining that for every invocation of ModelMapper#map
source/destination pair, there exists a unit test that invokes ModelMapper#map
with the same source/destination types?