using NUnit.Framework; using TINK.Model.Bikes; namespace TestTINKLib { [TestFixture] public class TestBikeCollection { /// Tests the member. [Test] public void TestConstruct() { var l_oColl = new BikeCollection(); Assert.AreEqual(0, l_oColl.Count); Assert.IsNull(l_oColl.GetById("1")); } } }