如何对 MVC 重定向进行单元测试?
public ActionResult Create(Product product)
{
_productTask.Save(product);
return RedirectToAction("Success");
}
public ActionResult Success()
{
return View();
}
Ayende 的方法仍然是最好的方法吗,预览 5:
public static void RenderView(this Controller self, string action)
{
typeof(Controller).GetMethod("RenderView").Invoke(self,new object[] { action} );
}
必须这样做似乎很奇怪,尤其是当 MVC 团队表示他们正在编写可测试的框架时。