public void TestGetUpdatedImage()
        {
            ImagingApi target = new ImagingApi(APIKEY, APPSID, BASEPATH);
            StorageApi storageApi = new StorageApi(APIKEY, APPSID, BASEPATH);


            string name = "TestDemo.tif";
            string format = "gif";
            int? newWidth = 300;
            int? newHeight = 300;
            int? x = 96;
            int? y = 96;
            int? rectWidth = 200;
            int? rectHeight = 200;
            string rotateFlipMethod = "Rotate180FlipX";
            string outPath = "";
            string folder = "";
            string storage = "";
             storageApi.PutCreate(name, null, null, System.IO.File.ReadAllBytes("\\temp\\imaging\\resources\\" + name)); 
            ResponseMessage actual;
            actual = target.GetUpdatedImage(name, format, newWidth, newHeight, x, y, rectWidth, rectHeight, rotateFlipMethod, outPath, folder, storage);
            Assert.AreEqual(200, actual.Code);
            Assert.IsInstanceOfType(new ResponseMessage(), actual.GetType()); 
        }