Hello,
I have someting like follllowing in controller.
--------Code---
public ActionResult CreateSession(
{
string strUserOption ="";
if (Request.Form["payOption"] != null)
strUserOption = Request.Form["payOption"].ToString();
if(strUserOption.length >0)
{
if(Session["SessionLogin"] !=null )
Session.Remove("SessionLogin");
else
Session["SessionLogin"] = "LogionObject";
}
return View("SomeView");
}
--------Code---
My question is , how do i set "Request.Form["payOption"] " and "Session["SessionLogin"]" values in unit test.