public void TestPostImagePsd()
        {
            ImagingApi target = new ImagingApi(APIKEY, APPSID, BASEPATH);

            string name = "sample.psd";
            int? channelsCount = 3;
            string compressionMethod = "rle";
            bool? fromScratch = null;
            string outPath = "";
            byte[] file = System.IO.File.ReadAllBytes("\\temp\\imaging\\resources\\" + name); 

            ResponseMessage actual;
            actual = target.PostImagePsd(channelsCount, compressionMethod, fromScratch, outPath, file);

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