예제 #1
0
        public void GetAll()
        {
            MockRentalService.Setup(r => r.GetAll()).Returns(new List <RentalBO>()
            {
                MockRental
            });

            var result = _controller.Get();

            Assert.NotEmpty(result);
        }