/**
  * @covers MicrosoftAzure\Storage\Blob\Models\BlobServiceOptions::getTimeout
  */
 public function testGetTimeout()
 {
     // Setup
     $options = new BlobServiceOptions();
     $value = 10;
     $options->setTimeout($value);
     // Test
     $actualValue = $options->getTimeout();
     // Assert
     $this->assertEquals($value, $actualValue);
 }
 /**
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::createBlockBlob
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::createContainer
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::deleteContainer
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::getContainerACL
  * @covers MicrosoftAzure\Storage\Blob\BlobRestProxy::setContainerACL
  */
 public function testSetContainerACL()
 {
     $interestingACL = BlobServiceFunctionalTestData::getInterestingACL();
     $interestingTimeouts = BlobServiceFunctionalTestData::getInterestingTimeoutValues();
     foreach ($interestingTimeouts as $timeout) {
         foreach ($interestingACL as $acl) {
             $options = new BlobServiceOptions();
             $options->setTimeout($timeout);
             $this->setContainerACLWorker($options, $acl);
         }
     }
 }