/**
  * @covers WindowsAzure\Blob\BlobRestProxy::createBlockBlob
  * @covers WindowsAzure\Blob\BlobRestProxy::deleteBlob
  * @covers WindowsAzure\Blob\BlobRestProxy::getBlobMetadata
  * @covers WindowsAzure\Blob\BlobRestProxy::getBlobProperties
  * @covers WindowsAzure\Blob\BlobRestProxy::setBlobMetadata
  */
 public function testSetBlobMetadata()
 {
     $container = BlobServiceFunctionalTestData::getContainerName();
     $interestingSetBlobMetadataOptions = BlobServiceFunctionalTestData::getSetBlobMetadataOptions();
     $interestingMetadata = BlobServiceFunctionalTestData::getInterestingMetadata();
     foreach ($interestingSetBlobMetadataOptions as $options) {
         foreach ($interestingMetadata as $properties) {
             $this->setBlobMetadataWorker($container, $options, $properties);
         }
     }
 }