asp.net-mvc – 单元测试RedirectToRouteResult

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 单元测试RedirectToRouteResult前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的控制器中有以下代码
public class MyController : BaseController
{
    public ActionResult MyMethod()
    {
        ...
        return RedirectToAction("Index","Dashboard");
    }
}

我想单元测试这个重定向(RedirectToRouteResult).
我这样做:

Assert.IsTrue(result.RouteValues.ContainsKey("action"));
Assert.IsTrue(result.RouteValues.ContainsKey("controller"));
Assert.AreEqual("Index",result.RouteValues["action"].ToString());
Assert.AreEqual("Dashboard",result.RouteValues["controller"].ToString());

所以我需要四个断言来测试我的RedirectToRouteResult.
有没有更有效的方法

解决方法

有一种更有效的方式,因为你不需要测试这两行
Assert.IsTrue(result.RouteValues.ContainsKey("action"));
Assert.IsTrue(result.RouteValues.ContainsKey("controller"));

那些是你没有写的代码的断言.你必须相信那些写这个代码的人有自己的单元测试.如果反对所有的可能性,前两行将是错误的,你的两个最后的断言将失败.

原文链接:https://www.f2er.com/aspnet/249431.html

猜你在找的asp.Net相关文章