public void TestGetSlidesDocumentWithFormat()
 {
     SlidesApi target = new SlidesApi(APIKEY, APPSID, BASEPATH);
     StorageApi storageApi = new StorageApi(APIKEY, APPSID, BASEPATH);
     
     string name = "test_slide.pptx";
     string format = "tiff";
     string jpegQuality = null; 
     string password = null; 
     string storage = null; 
     string folder = null; 
     string outPath = null; 
     
     storageApi.PutCreate(name, null, null, System.IO.File.ReadAllBytes("\\temp\\slides\\resources\\" + name)); 
     
     ResponseMessage actual;
     actual = target.GetSlidesDocumentWithFormat(name, format, jpegQuality, password, storage, folder, outPath);
     
     Assert.AreEqual(200, actual.Code);
     Assert.IsInstanceOfType(new Com.Aspose.Slides.Model.ResponseMessage(), actual.GetType()); 
 }