public void IsPublic()
 {
     HttpContext.Current = new HttpContext(
         new HttpRequest(null, "http://www.domain.tld", null),
         new HttpResponse(null)
     );
     var impl = new DefaultLinkedInClient();
     impl.ShouldNotBeNull();
 }
 public BruteForceLinkedInClientServiceProvider(DefaultLinkedInClient client)
 {
     _client = client;
 }