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")); } } }