public void CanSimulateRemoteRequests()
        {
            using (var simulator = new HttpSimulator())
            {
                simulator.SetIsLocalRequest(false)
                .SimulateRequest(new Uri("http://something.com/Test.aspx"), HttpVerb.GET);

                Assert.IsFalse(HttpContext.Current.Request.IsLocal);
            }
        }