using NUnit.Framework; using ShareeBike.Model.Bikes; namespace SharedBusinessLogic.Tests { [TestFixture] public class TestBikeCollection { /// Tests the member. [Test] public void TestConstruct() { var l_oColl = new BikeCollection(); Assert.That(l_oColl.Count, Is.EqualTo(0)); Assert.That(l_oColl.GetById("1"), Is.Null); } } }