mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
32 lines
904 B
C#
32 lines
904 B
C#
|
using NUnit.Framework;
|
|||
|
using TINK.Repository.Exception;
|
|||
|
|
|||
|
namespace TestTINKLib.Fixtures.ObjectTests.Repository.Exception
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestNoGPSDataException
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestIsNotAtStation()
|
|||
|
{
|
|||
|
const string responseText = "Failure 2245: No GPS data, state change forbidden.";
|
|||
|
|
|||
|
NoGPSDataException exception = null;
|
|||
|
|
|||
|
Assert.That(() => NoGPSDataException.IsNoGPSData(responseText, out exception),
|
|||
|
Is.EqualTo(true));
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void TestIsNotAtStation_InvalidNr()
|
|||
|
{
|
|||
|
const string responseText = "Failure 2248: No GPS data, state change forbidden.";
|
|||
|
|
|||
|
NoGPSDataException exception = null;
|
|||
|
|
|||
|
Assert.That(() => NoGPSDataException.IsNoGPSData(responseText, out exception),
|
|||
|
Is.EqualTo(false));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|