Ejemplo n.º 1
0
        public void TestGetDocumentAttachmentByIndex()
        {
            PdfApi target = new PdfApi(APIKEY, APPSID, BASEPATH);
            StorageApi storageApi = new StorageApi(APIKEY, APPSID, BASEPATH);

            string name = "attachments.pdf";
            int? attachmentIndex = 1;
            string storage = null;
            string folder = null;

            storageApi.PutCreate(name, null, null, System.IO.File.ReadAllBytes("\\temp\\pdf\\resources\\" + name));

            Com.Aspose.PDF.Model.AttachmentResponse actual;
            actual = target.GetDocumentAttachmentByIndex(name, attachmentIndex, storage, folder);

            Assert.AreEqual("200", actual.Code);
            Assert.IsInstanceOfType(new Com.Aspose.PDF.Model.AttachmentResponse(), actual.GetType());
        }