0
我正在尋找在Asp.Net Web窗體中模擬HttpContext.Request.Cookies的最佳方法。在Asp.Net Web窗體中模擬HttpContext.Request.Cookies
以下是我的代碼:
public void Method1()
{
var _cookie = this.Context.Request.Cookies["PersonID"];
if (_cookie != null)
{
//some code.........
}
}
下面是我的測試方法的代碼部分:
using (var httpSimulator = new HttpSimulator("/", @"c:\inetpub\").SimulateRequest(new Uri(request), form))
{
//some code
var aObject= new ClassA(HttpContext.Current);
aObject.Method1();
}
我不知道,如果我們可以嘲笑餅乾的HttpRequest的。 請幫忙。
很多感謝,
感謝, 侃