/**
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::createBlobSnapshot
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::createPageBlob
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::deleteBlob
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::getBlob
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::listBlobs
  */
 public function testCreateBlobSnapshotAllOptions()
 {
     $container = BlobServiceFunctionalTestData::getContainerName();
     $interestingCreateBlobSnapshotOptions = BlobServiceFunctionalTestData::getCreateBlobSnapshotOptions();
     foreach ($interestingCreateBlobSnapshotOptions as $options) {
         $this->createBlobSnapshotWorker($options, $container);
     }
 }