use of org.mapstruct.ap.test.updatemethods.BossDto in project mapstruct by mapstruct.
the class ExternalSelectionTest method shouldSelectGeneratedExternalMapperWithImportForPropertyType.
@ProcessorTest
@WithClasses({ OrganizationMapper3.class })
@IssueKey("604")
public void shouldSelectGeneratedExternalMapperWithImportForPropertyType() {
generatedSource.addComparisonToFixtureFor(OrganizationMapper3.class);
BossEntity entity = new BossEntity();
BossDto dto = new BossDto();
OrganizationMapper3.INSTANCE.toBossEntity(dto, entity);
}
Aggregations