HtmlHelper.Partial をモックする方法を知っている人はいますか?
私は独自の htmlhelper クラスを作成しました。このヘルパー クラスの機能の 1 つは、 の MvcHtmlString を返すことですhtmlHelper.Partial
。
例:
public static MvcHtmlString ScriptEditorFor(this HtmlHelper<ViewModel> htmlHelper,
Identifiers.PainAssessmentVariables painVariable)
{
return htmlHelper.Partial("test");
}
これをmoqテストしようとすると、null参照例外が発生します