51Testing软件测试论坛
标题:
谁用过moq?用moq写单元测试时,如何模拟httpcontext。
[打印本页]
作者:
测试积点老人
时间:
2019-2-28 09:31
标题:
谁用过moq?用moq写单元测试时,如何模拟httpcontext。
public static VMERPUser Me
{
get
{
FormsIdentity userIdentity = HttpContext.Current.User.Identity as FormsIdentity;
if (userIdentity != null)
{
FormsAuthenticationTicket ticket = userIdentity.Ticket;
return JsonConvert.DeserializeObject<VMERPUser>(ticket.UserData);
}
return null;
}
}
复制代码
让我能够通过这个方法得到值。不会报错。求moq给httpcontext赋值的例子
作者:
qqq911
时间:
2019-3-1 10:38
直接传值就行
作者:
abcsell
时间:
2019-3-1 10:47
为什么用moq,不是有更好用的吗?
作者:
jingzizx
时间:
2019-3-1 12:46
直接赋值目前有什么问题
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2