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