dimanche 28 décembre 2014

Unit Testing Generic Handlers

How can i test return value of "ProcessRequest" method in a generic handler with unit Test?



public class Handler1 : IHttpHandler
{

public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}

public bool IsReusable
{
get
{
return false;
}
}
}

Aucun commentaire:

Enregistrer un commentaire