2021-07-12 21:31:46 +02:00
|
|
|
|
using System;
|
2021-08-28 10:04:10 +02:00
|
|
|
|
using System.Threading;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using TINK.Model.Services.Geolocation;
|
|
|
|
|
using Xamarin.Essentials;
|
|
|
|
|
|
|
|
|
|
namespace TestTINKLib.Mocks.Services
|
|
|
|
|
{
|
|
|
|
|
public class GeolocationMock : IGeolocation
|
|
|
|
|
{
|
|
|
|
|
|
2021-08-28 10:04:10 +02:00
|
|
|
|
public Task<Location> GetAsync(CancellationToken? cancelToken = null, DateTime? timeStamp = null)
|
2021-07-12 21:31:46 +02:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary> If true location data returned is simulated.</summary>
|
|
|
|
|
public bool IsSimulation { get => true; }
|
|
|
|
|
|
|
|
|
|
public bool IsGeolcationEnabled => true;
|
|
|
|
|
}
|
|
|
|
|
}
|