Moq Returns方法返回null
本文关键字:null 返回 方法 Returns Moq | 更新日期: 2023-09-27 18:28:40
我是Moq的新手,正在尝试让mock在ASP.NET MVC中返回值。此处提供文档。代码:
mock = new Mock<IRepository<Story>>();
mock.Setup(x => x.GetById( It.Is<int>( i => i==10 ) ))
.Returns(It.Is<Story>((Story story) => story.Id == 10 && story.Hits == 0));
storiesController = new StoriesController(mock.Object);
ViewResult result = storiesController.Details(10) as ViewResult;
Details
方法调用storyRepository.GetById(id)
并且该测试失败:Assert.IsNotNull(result);
,因为GetById
方法返回null。
我做错了什么?
public ActionResult Details(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Story story = storyRepository.GetById(id);
if (story == null)
{
return HttpNotFound();
}
story.Hits++; // TODO!
storyRepository.Update(story);
storyRepository.Save();
return View(story);
}
这是Details方法。在调试模式下,我一跨过调用的GetById方法,就会看到提取的Story为null。
之所以出现这种情况,是因为Returns
不是对的断言更改
mock.Setup(x => x.GetById(10) ))
.Returns(new Story {Id=10 });