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(), 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); } } }