コード例 #1
0
        public void GetDocumentsDocumentIdContentTest()
        {
            // TODO: add unit test for the method 'GetDocumentsDocumentIdContent'
            string documentId  = null; // TODO: replace null with proper value
            string disposition = null; // TODO: replace null with proper value
            string contentType = null; // TODO: replace null with proper value

            instance.GetDocumentsDocumentIdContent(documentId, disposition, contentType);
        }
コード例 #2
0
        public void GetDocumentsDocumentIdContentTest()
        {
            // TODO: add unit test for the method 'GetDocumentsDocumentIdContent'
            string documentId  = null; // TODO: replace null with proper value
            string disposition = null; // TODO: replace null with proper value
            string contentType = null; // TODO: replace null with proper value
            var    response    = instance.GetDocumentsDocumentIdContent(documentId, disposition, contentType);

            Assert.IsInstanceOf <DownloadResponse> (response, "response is DownloadResponse");
        }