public void Initialize()
        {
            _locationsKdTree = A.Fake <ILocationsKdTree>();

            _nearestLocationsFinderService = new NearestLocationsFinderServiceV3(_locationsKdTree);
        }
        public NearestLocationsFinderServiceV3(ILocationsKdTree locationsKdTree)
        {
            EnsureArg.IsNotNull(locationsKdTree, nameof(locationsKdTree));

            _locationsKdTree = locationsKdTree;
        }