using System; using System.Threading; using System.Threading.Tasks; using TINK.Model.Services.Geolocation; using Xamarin.Essentials; namespace TestTINKLib.Mocks.Services { public class GeolocationMock : IGeolocation { public Task GetAsync(CancellationToken? cancelToken = null, DateTime? timeStamp = null) { throw new NotImplementedException(); } /// If true location data returned is simulated. public bool IsSimulation { get => true; } public bool IsGeolcationEnabled => true; } }