public void Should_Download_Object()
 {
     var azureClient = new WindowsAzureStorageService(CreateCmsConfigurationMock());
     var uri = new Uri("http://bettercms.blob.core.windows.net/temp/newFile4.jpg");
     GetUploadRequest(uri, azureClient);
     var file = azureClient.DownloadObject(uri);
     Assert.IsTrue(file.ResponseStream.Length > 0);
     azureClient.RemoveObject(uri);
 }