예제 #1
0
        public void GetHop_ByHopType_Succeeded()
        {
            string given = "Truck";
            Hop    hop   = new Hop()
            {
                Code    = "AUTO123",
                HopType = given
            };

            _dal.Create(hop);

            hop = _dal.GetByHopType(given);

            Assert.NotNull(hop);
            Assert.AreEqual(hop.HopType, given);
        }