/**
  * @covers MicrosoftAzure\Storage\Blob\Models\CreateBlobSnapshotOptions::setLeaseId
  * @covers MicrosoftAzure\Storage\Blob\Models\CreateBlobSnapshotOptions::getLeaseId
  */
 public function testSetLeaseId()
 {
     $createBlobSnapshotOptions = new CreateBlobSnapshotOptions();
     $expected = "123456789";
     $createBlobSnapshotOptions->setLeaseId($expected);
     $this->assertEquals($expected, $createBlobSnapshotOptions->getLeaseId());
 }