sharee.bike-App/TestShareeLib/Model/Bike/BluetoothLock/TestBikeInfoMutalbe.cs

19 lines
453 B
C#
Raw Normal View History

2022-01-04 18:59:16 +01:00
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"));
}
}
}