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

            string name = "aspose.jpg";
            string format = "png";
            string method = "Rotate180FlipX";
            string outPath = "";
            byte[] file = System.IO.File.ReadAllBytes("\\temp\\imaging\\resources\\" + name); 

            ResponseMessage actual;
            actual = target.PostImageRotateFlip(format, method, outPath, file);

            Assert.AreEqual(200, actual.Code);
            Assert.IsInstanceOfType(new ResponseMessage(), actual.GetType()); 
        }