mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
27 lines
797 B
C#
27 lines
797 B
C#
using System;
|
|
using NUnit.Framework;
|
|
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
|
|
using TINK.Model.Bikes.BikeInfoNS.DriveNS;
|
|
|
|
namespace TestShareeLib.Model.Bike.BluetoothLock
|
|
{
|
|
[TestFixture]
|
|
public class TestBikeInfoMutalbe
|
|
{
|
|
[Test]
|
|
public void TestCtor()
|
|
{
|
|
Assert.That(
|
|
new BikeInfoMutable(new TINK.Model.Bikes.BikeInfoNS.BluetoothLock.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("MyBikeId", TINK.Model.Bikes.BikeInfoNS.BikeNS.LockModel.ILockIt), new Drive(), TINK.Model.Bikes.BikeInfoNS.BC.DataSource.Copri, 42, new Guid(), "17"), "My Station Name").StationName,
|
|
Is.EqualTo("My Station Name"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestCtorBikeNull()
|
|
{
|
|
Assert.That(
|
|
() => new BikeInfoMutable(null, "My Station Name"),
|
|
Throws.ArgumentNullException);
|
|
}
|
|
}
|
|
}
|