public async Task WhenLocations_ShouldMapIntoRequest()
        {
            // Act
            await _sut.GetDistanceBetweenLocations(_from, _to);

            // Assert
            _getDistanceRequestMapper
            .Received(1)
            .Map(Arg.Is(_from), Arg.Is(_to));
        }