public async Task GetDocumentAsync()
        {
            var document = await _signatureService.GetDocumentAsync(_documentId);

            Assert.IsNotNull(document);
            AssertRequest(HttpMethod.Get, $"/signature/documents/{_documentId}");
        }