public void GetAll() { MockRentalService.Setup(r => r.GetAll()).Returns(new List <RentalBO>() { MockRental }); var result = _controller.Get(); Assert.NotEmpty(result); }