public async Task Handle_DataForCountry_NonUk()
        {
            // Arrange
            A.CallTo(() => unitedKingdomCompetentAuthorityRepository.IsCountryUk(countryWithDataId)).Returns(false);

            // Act
            var result = await handler.HandleAsync(new GetCompetentAuthoritiesAndEntryPointsByCountryId(countryWithDataId, UKCompetentAuthority.England));

            // Assert
            A.CallTo(() => unitedKingdomCompetentAuthorityRepository.IsCountryUk(countryWithDataId)).MustHaveHappened();
            A.CallTo(() => entryOrExitPointRepository.GetForCountry(countryWithDataId)).MustHaveHappened();
            A.CallTo(() => repository.GetCompetentAuthorities(countryWithDataId));
        }