mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
50 lines
2.2 KiB
C#
50 lines
2.2 KiB
C#
using NUnit.Framework;
|
|
using System;
|
|
using TINK.Model.Bike.BluetoothLock;
|
|
using TINK.Model.State;
|
|
|
|
namespace TestTINKLib.Fixtures.ObjectTests.Bike.BluetoothLock
|
|
{
|
|
[TestFixture]
|
|
public class TestBikeInfo
|
|
{
|
|
/// <summary>
|
|
/// Moved to TestShareeLib (.Net Core)
|
|
/// </summary>
|
|
[Test]
|
|
public void TestCtorCopyNull()
|
|
{
|
|
Assert.Throws<System.ArgumentException>(
|
|
() => new BikeInfo(null, null),
|
|
"Verify that no unspecific reference not set to... exception is thrown");
|
|
|
|
Assert.Throws<System.ArgumentException>(
|
|
() => new BikeInfo(new TINK.Model.Bike.BC.BikeInfo(12,1), null),
|
|
"Verify that no unspecific reference not set to... exception is thrown");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCtorAvailable()
|
|
{
|
|
Assert.AreEqual (12,new BikeInfo(12, 13).Id);
|
|
Assert.AreEqual(13, new BikeInfo(12, 13).CurrentStation);
|
|
Assert.AreEqual(InUseStateEnum.Disposable, new BikeInfo(12, 13).State.Value);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCtorRequested()
|
|
{
|
|
Assert.AreEqual(12, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020, 1, 1), "a@b", 13, dateTimeProvider: () => new DateTime(2019, 1, 1)).Id);
|
|
Assert.AreEqual(112, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020,1,1), "a@b", 13, dateTimeProvider: () => new DateTime(2019, 1, 1)).LockInfo.Id);
|
|
Assert.AreEqual(InUseStateEnum.Reserved, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020, 1, 1), "a@b", 13, dateTimeProvider: () => new DateTime(2019, 1, 1)).State.Value);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCtorBooked()
|
|
{
|
|
Assert.AreEqual(12, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020, 1, 1), "a@b", 13).Id);
|
|
Assert.AreEqual(112, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020, 1, 1), "a@b", 13).LockInfo.Id);
|
|
Assert.AreEqual(InUseStateEnum.Booked, new BikeInfo(12, 112, new Guid(), null, null, null, new DateTime(2020, 1, 1), "a@b", 13).State.Value);
|
|
}
|
|
}
|
|
}
|