public void TestGetFragments()
        {
            PdfApi target = new PdfApi(APIKEY, APPSID, BASEPATH);
            StorageApi storageApi = new StorageApi(APIKEY, APPSID, BASEPATH);

            string name = "Lenovo_Tablet_2_Datasheet.pdf";
            int? pageNumber = 1;
            string withEmpty = null;
            string storage = null;
            string folder = null;

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

            Com.Aspose.PDF.Model.TextItemsResponse actual;
            actual = target.GetFragments(name, pageNumber, withEmpty, storage, folder);

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