public void Test_CanUploadRetrieveDeleteTextBlob()
 {
     var storage = new BlobStorage(account, _containerName);
     Assert.IsTrue(storage.Create());
     const string dataContent = "data content";
     Assert.IsTrue(storage.UploadText("test.txt", dataContent));
     string content = storage.Download("test.txt");
     Assert.AreEqual(dataContent, content);
     Assert.IsTrue(storage.Delete("test.txt"));
     Assert.IsTrue(storage.Delete());
 }