public void Constructor_WithNullForLocationsKdTree_ShouldThrowArgumentNullException()
        {
            // Arrange
            const string expectedNameOfParam = "locationsKdTree";

            // Act
            Action act = () => _ = new NearestLocationsFinderServiceV3(null);

            // Assert
            act.Should().Throw <ArgumentNullException>().And.ParamName.Should().Be(expectedNameOfParam);
        }
        public void Initialize()
        {
            _locationsKdTree = A.Fake <ILocationsKdTree>();

            _nearestLocationsFinderService = new NearestLocationsFinderServiceV3(_locationsKdTree);
        }