6
votes
3answers
966 views
How to mock the Request on Controller in ASP.Net MVC ?
I have a controller in C# using the ASP.Net MVC framework
public class HomeController:Controller{
public ActionResult Index()
{
if (Request.IsAjaxRequest())
{
…
