mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
22 lines
530 B
C#
22 lines
530 B
C#
|
using System;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using TINK.Model.Services.Geolocation;
|
|||
|
using Xamarin.Essentials;
|
|||
|
|
|||
|
namespace TestTINKLib.Mocks.Services
|
|||
|
{
|
|||
|
public class GeolocationMock : IGeolocation
|
|||
|
{
|
|||
|
|
|||
|
public Task<Location> GetAsync(DateTime? timeStamp = null)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
/// <summary> If true location data returned is simulated.</summary>
|
|||
|
public bool IsSimulation { get => true; }
|
|||
|
|
|||
|
public bool IsGeolcationEnabled => true;
|
|||
|
}
|
|||
|
}
|