public TestHttpContext(WebTestContext context) { this.context = context; testHttpRequest = new TestHttpRequest(context); testHttpResponse = new TestHttpResponse(context); hashtable = new Hashtable(); }
public TestHttpBrowserCapabilitiesBase(WebTestContext context) { this.context = context; }
public TestHttpRequest(WebTestContext context) { this.context = context; testHttpBrowserCapabilitiesBase = new TestHttpBrowserCapabilitiesBase(context); httpCookieCollection = new HttpCookieCollection(); }
public TestHttpResponse(WebTestContext context) { this.context = context; httpCookieCollection = new HttpCookieCollection(); outputStream = new MemoryStream(); }