AspUnitRunner.Tests.Infrastructure.TestWebClientFactory.Create_should_return_WebClient C# (CSharp) Method

Create_should_return_WebClient() private method

private Create_should_return_WebClient ( ) : void
return void
        public void Create_should_return_WebClient()
        {
            var factory = new WebClientFactory();
            using (var client = factory.Create()) {
                Assert.That(client, Is.InstanceOf<WebClient>());
            }
        }