mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
19 lines
453 B
C#
19 lines
453 B
C#
|
using NUnit.Framework;
|
|||
|
using System;
|
|||
|
using TINK.Model.Bike.BluetoothLock;
|
|||
|
|
|||
|
namespace TestShareeLib.Model.Bike.BluetoothLock
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestBikeInfoMutalbe
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestCtor()
|
|||
|
{
|
|||
|
Assert.That(
|
|||
|
new BikeInfoMutable(new BikeInfo("MyBikeId", 42, new Guid(), "17"), "My Station Name").StationName,
|
|||
|
Is.EqualTo("My Station Name"));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|