public void GetAsync_throws_if_client_is_null(string path, Request request, Response _)
 {
     Assert.That(() => HttpRestClientExtensions.GetAsync <Request, Response>(null, path, request), Throws.ArgumentNullException);
 }
 public void GetAsync_throws_if_client_is_null(string path)
 {
     Assert.That(() => HttpRestClientExtensions.GetAsync(null, path), Throws.ArgumentNullException);
 }