public void IntegrationTestGetBlobMetadata()
        {
            IBlobService blobService = new BlobService(StorageAccount.Name, StorageAccount.Key);

            // Create a container.
            bool createSucess = blobService.CreateContainer("test8");
            Assert.IsTrue(createSucess, "The container was not created as expected.");

            // Put a blob in the container.
            bool putSuccess = blobService.PutBlob("test8", "blobName", "blobContent");
            Assert.IsTrue(putSuccess, "The put was not successful.");

            // Get blob metadata
            SortedList<string, string> blobMetadata = blobService.GetBlobMetadata("test8", "blobName");
            Assert.IsNotNull(blobMetadata, "The metadata was null when it was not expected to be.");

            // Now delete the container.
            bool deleteSuccess = blobService.DeleteContainer("test8");
            Assert.IsTrue(deleteSuccess, "The container was not deleted as expected.");
        }