Access函数返回JsonResult类

时间:2015-10-01 11:32:47

标签: asp.net-mvc unit-testing

我的函数是返回JsonResult类。我的代码如下: -

public JsonResult UpdateTest(string a, int b, string c, string d, string e, bool f)
    {
         try
        {
            theService.UpdateTest(a,b,c,d,e,f);
            return Json(new { result = true });
        }
        catch (Exception myException)
        {
            LogError(SECTION, myException);
            Response.StatusCode = AjaxError();
            return Json(new { result = false });
        }
    }

我想在创建单元测试用例时访问返回Json(new {result = true})的值。

请告诉我该怎么做,请提供代码。

谢谢,  拉胡

0 个答案:

没有答案