コード例 #1
0
        public void PostDocumentsTest()
        {
            // TODO: add unit test for the method 'PostDocuments'
            DocumentUpload body       = null; // TODO: replace null with proper value
            string         copySource = null; // TODO: replace null with proper value
            string         moveSource = null; // TODO: replace null with proper value
            bool?          _override  = null; // TODO: replace null with proper value
            var            response   = instance.PostDocuments(body, copySource, moveSource, _override);

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