How to unit test @Recover for jacoco code coverage using junit5?

I am using @Retryable and @Recover, so when exception occurs during retry, it can be handled in different way. I use @EnableRetry in my configuration class where it instantiates my service bean. In my service interface class, I marked a method to @Retryable like this:

@Retryable(retryFor = DataIntegrityViolationException.class, maxAttempts = 2, backoff = @Backoff(delayExpression = "500"))

Lastly, I implemented @Recover method so it generates telemetry and throw e again:

@Recover
public CustomerMappingDto recoverDataIntegrityViolationException(DataIntegrityViolationException e, String customerId, Integer siteId, Integer siteLocationId, String siteLocationName) {
        telemetryService.addGetCustomerMappingDefaultNpiCounter(customerId, siteId, siteLocationId, siteLocationName, AUTO_MAPPED_FAILED, false);
        throw e;
    }

I also created unit test (junit5) to cover cases where it retries like this:

@Test
public void getCustomerMappingAndUpdateRetryFailedWithDataIntegrityViolationException() {
        CustomerMapping customerMapping = new CustomerMapping();
        when(customerMappingRepository.findByCustomerIdAndSiteIdAndSiteLocationId(CUSTOMER_ID, SITE_ID, SITE_LOCATION_ID))
                .thenReturn(null);
        when(customerMappingRepository.findByCustomerIdAndSiteIdAndSiteLocationId(CUSTOMER_ID, SITE_ID, null))
                .thenReturn(customerMapping);
        doThrow(new DataIntegrityViolationException("Test Exception"))
                .when(customerMappingRepository).save(any(CustomerMapping.class));

        assertThrows(DataIntegrityViolationException.class, () -> customerMapperService.fetchCustomerMappingsAndUpdateAutoMapping(CUSTOMER_ID, SITE_ID, SITE_LOCATION_ID, SITE_LOCATION_NAME));

        verify(customerMappingRepository, times(2)).save(any(CustomerMapping.class));
        verify(customerMappingRepository, times(2)).findByCustomerIdAndSiteIdAndSiteLocationId(CUSTOMER_ID, SITE_ID, SITE_LOCATION_ID);
        verify(customerMappingRepository, times(2)).findByCustomerIdAndSiteIdAndSiteLocationId(CUSTOMER_ID, SITE_ID, null);
        verify(customerMappingRepository, never()).findByCustomerIdAndSiteId(CUSTOMER_ID, SITE_ID);
        verify(telemetryService, times(1)).addGetCustomerMappingDefaultNpiCounter(CUSTOMER_ID, SITE_ID, SITE_LOCATION_ID, SITE_LOCATION_NAME, AUTO_MAPPED_FAILED, false);
    }

I basically force method to throw DataIntegrityViolationException (exception that gets retried) each time, and make sure telemetryService is called from @Recover method. I did debug and verified that it does go into @Recover method.

However, it is still not covered by code coverage in jacoco. As it is small project, code coverage goes down by 5% per each @Recover method. I tried calling it directly by creating my implementation class directly and call the recover method, but it wasn’t still covered.

assertThrows(DataIntegrityViolationException.class, () -> myServiceImpl.recoverDataIntegrityViolationException(...)

How can I unit test @Recover method(s) so it can be covered by jacoco code coverage?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật