public void DataTest5()
 {
     ContainerDHBlobs target = new ContainerDHBlobs(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.id = expected;
     actual = target.id;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
        //
        // GET: /DHBlob/
        public ActionResult Index(string id)
        {
            // Retrieve storage account from connection-string
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
                CloudConfigurationManager.GetSetting("StorageConnectionString"));

            // Create the blob client
            CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

            // Retrieve reference to a previously created container
            // Permission myPermission = entities.Permissions.FirstOrDefault(p => p.postalAddr == id);
            CloudBlobContainer container = blobClient.GetContainerReference(id);

            // Create the container if it doesn't already exist
            container.CreateIfNotExist();

            List<DHBlob> listBlobs = new List<DHBlob>();

            foreach (var i in container.ListBlobs())
            {
                DHBlob dhBlob = new DHBlob();
                dhBlob.blobURI = i.Uri.ToString();
                listBlobs.Add(dhBlob);
            }

            ContainerDHBlobs myBlobs = new ContainerDHBlobs();
            myBlobs.id = id;
            myBlobs.Blobs = listBlobs;
            return View(myBlobs);
        }
 public void DataTest4()
 {
     ContainerDHBlobs target = new ContainerDHBlobs();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }