Exemplo n.º 1
0
        public void TestMethodType1()
        {
            // arange
            int    cntExpected = 3;
            string cType       = "men";

            // act
            int cnt = handler.GetByType(cType).Count;

            // assert
            Assert.AreEqual(cntExpected, cnt);
        }
Exemplo n.º 2
0
 public List <Bike> GetByType(string biketype)
 {
     return(handler.GetByType(biketype));
 }