コード例 #1
0
        public void GetWorkspacesWorkspaceIdDocumentsTest()
        {
            // TODO: add unit test for the method 'GetWorkspacesWorkspaceIdDocuments'
            string        workspaceId = null; // TODO: replace null with proper value
            List <string> expand      = 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        sortBy      = null; // TODO: replace null with proper value
            string        sortOrder   = null; // TODO: replace null with proper value
            var           response    = instance.GetWorkspacesWorkspaceIdDocuments(workspaceId, expand, pageSize, pageNumber, sortBy, sortOrder);

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