Amido.Testing.Tests.Http.RestClientTests.Should_Call_Google_And_Return_Valid_Response C# (CSharp) Method

Should_Call_Google_And_Return_Valid_Response() private method

private Should_Call_Google_And_Return_Valid_Response ( ) : void
return void
        public void Should_Call_Google_And_Return_Valid_Response()
        {
            // Act
            var result = RestClient.RequestUri("http://www.google.co.uk")
                .WithoutRetries()
                .WithVerb(HttpMethod.Get)
                .MakeRequest();
            System.Diagnostics.Debug.WriteLine("Blah");

            // Assert
            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
        }
    }