string Download(WebHost host, string url) { using (var http = new HttpTestHarness(host)) { httpContext = http.Context.Object; http.Get(url); return(http.ResponseOutputStream.ReadToEnd()); } }
string DownloadJavaScript(WebHost host, string url) { using (var http = new HttpTestHarness(host)) { httpContext = http.Context.Object; http.Get(url); http.Response.VerifySet(r => r.ContentType = "text/javascript"); return(http.ResponseOutputStream.ReadToEnd()); } }