ビューがあり、内部に部分的なビューのレンダリングがあります:
<div class="partialViewDiv">
@Html.RenderPartial("partial", Model.SomeModelProperty);
</div>
そして、このビューを返すコントローラー
public ActionResult Action()
{
...
var model = new SomeModel(){SomeModelProperty = "SomeValue"}
return View("view", model);
}
ビューがレンダリングされたことをテストする方法は次のとおりです。
[TestMethod]
public void TestView()
{
...
var result = controller.Action();
// Assert
result.AssertViewRendered().ForView("view").WithViewData<SomeModel>();
}
しかし、私が電話するとき
result.AssertPartialViewRendered().ForView("partial").WithViewData<SomeModelPropertyType>();
このエラーメッセージが表示されます
Expected result to be of type PartialViewResult. It is actually of type ViewResult.
私は何を間違っていますか?