public void WithBasicAuthShouldNotValidateParameters(HttpRequestHeaders headers, string login, string password)
 {
     Assert.Throws <ArgumentNullException>(() => headers.WithBasicAuth(login, password));
 }