using TINK.Model.Device; using Xamarin.Essentials; namespace TestFramework.Model.Device { public class DeviceMock : ISmartDevice { /// /// Holds the id of the device. /// private string m_strDeviceId = "522c6ff6886198fd"; public string Manufacturer => throw new System.NotImplementedException(); public string Model => throw new System.NotImplementedException(); public DevicePlatform Platform => DevicePlatform.UWP; public string VersionText => throw new System.NotImplementedException(); /// /// Constructs a device mock object setting device id to default value. /// public DeviceMock() { } /// /// Constructs a device mock object. /// /// Mocked Id public DeviceMock(string p_strDeviceId) { m_strDeviceId = p_strDeviceId; } /// Gets the device ID. /// public string Identifier => m_strDeviceId; /// Close the application. public void CloseApplication() { } } }