How to tests and mock mapstruct converter?
问题 I use mapstruct frameword on my java gradle project and it works perfectly but i just want to test : mapstruct generated sources (converter) service class (call mapstrcut converter) I have try to use an other topic to do this but it not working for me. This is my mapstruct interface : @Mapper(unmappedTargetPolicy = ReportingPolicy.IGNORE) public interface RisqueBOConvertisseur extends BOConvertisseur<RisqueARS, RisqueBO> { @Override RisqueBO convertirDaoVersBo(RisqueARS dao); @Override