Closed schuettec closed 5 years ago
When having a mapper with a reassing that is used for a type mapping (B -> BResource),...
B -> BResource
.to(AResource.class) .reassign(A::getB) .to(AResource::getbResource) .useMapper(bMapper) .mapper();
...then the corresponding test using the Assert API produces a compiler error:
AssertMapping.of(aMapper) .expectReassign(A::getB) .to(AResource::getbResource) .ensure();
This is because the support for different types for reassing was not reflected in the Assert API.
Release available.
When having a mapper with a reassing that is used for a type mapping (
B -> BResource
),......then the corresponding test using the Assert API produces a compiler error:
This is because the support for different types for reassing was not reflected in the Assert API.