Наследование: IWebClientFactory
 public void Create_should_return_WebClient()
 {
     var factory = new WebClientFactory();
     using (var client = factory.Create()) {
         Assert.That(client, Is.InstanceOf<WebClient>());
     }
 }