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

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

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

            // Get the blob from the container.
            string retrievedBlobContent = blobService.GetBlob("test6", "blobName");
            Assert.AreEqual("blobContent", retrievedBlobContent, "The retrieved blob content was not as expected.");

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