private static OAuthAuthentication CreateOAuthAuthentication(out WebRequestServiceFake webRequestServiceFake, ExtractTokenFromTextFake extractTokenFromText)
        {
            var uriAuthenticationFake = new UriAuthenticationFake();

            webRequestServiceFake = new WebRequestServiceFake();

            return(new OAuthAuthentication(webRequestServiceFake, uriAuthenticationFake, extractTokenFromText));
        }
 private static OAuthAuthentication CreateOAuthAuthentication(out WebRequestServiceFake webRequestServiceFake)
 {
     return(CreateOAuthAuthentication(out webRequestServiceFake, new ExtractTokenFromTextFake()));
 }