コード例 #1
0
        public void GetDocumentsDocumentIdAuditsTest()
        {
            // TODO: add unit test for the method 'GetDocumentsDocumentIdAudits'
            string documentId        = null; // TODO: replace null with proper value
            int?   pageSize          = null; // TODO: replace null with proper value
            int?   pageNumber        = null; // TODO: replace null with proper value
            string transactionFilter = null; // TODO: replace null with proper value
            string level             = null; // TODO: replace null with proper value
            string sortBy            = null; // TODO: replace null with proper value
            string sortOrder         = null; // TODO: replace null with proper value
            var    response          = instance.GetDocumentsDocumentIdAudits(documentId, pageSize, pageNumber, transactionFilter, level, sortBy, sortOrder);

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