mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
18 lines
453 B
C#
18 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"));
|
|
}
|
|
}
|
|
}
|