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


            string name = "demo.tif";
            string folder = "";
            string storage = "";

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

            ImagingResponse actual;
            actual = target.GetImageProperties(name, folder, storage);

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