/** 
  * @covers WindowsAzure\Blob\Models\CopyBlobOptions::setLeaseId
  * @covers WindowsAzure\Blob\Models\CopyBlobOptions::getLeaseId
  */
 public function testSetLeaseId()
 {
     $expected = '0x8CAFB82EFF70C46';
     $options = new CopyBlobOptions();
     $options->setLeaseId($expected);
     $this->assertEquals($expected, $options->getLeaseId());
 }