public void TestMethodType1() { // arange int cntExpected = 3; string cType = "men"; // act int cnt = handler.GetByType(cType).Count; // assert Assert.AreEqual(cntExpected, cnt); }
public List <Bike> GetByType(string biketype) { return(handler.GetByType(biketype)); }