Ejemplo n.º 1
0
        public void TestMethod1()
        {
            // arange
            int cntExpected = 5;

            // act
            int cnt = handler.GetAll().Count;

            // assert
            Assert.AreEqual(cntExpected, cnt);
        }
Ejemplo n.º 2
0
 public IEnumerable <Bike> Get()
 {
     return(handler.GetAll());
 }