/**
  * @covers WindowsAzure\MediaServices\Models\IngestManifestFile::getEncryptionKeyId
  * @covers WindowsAzure\MediaServices\Models\IngestManifestFile::setEncryptionKeyId
  */
 public function testSetGetEncryptionKeyId()
 {
     // Setup
     $name = 'Manifest File Name 4634';
     $parentIngestManifestId = 'parent-ingest-manifest-id-345';
     $parentIngestManifestAssetId = 'parent-ingest-manifest-asset-id-347';
     $encryptionKeyId = 'Encryption-Key-Id-56764';
     $manifestFile = new IngestManifestFile($name, $parentIngestManifestId, $parentIngestManifestAssetId);
     // Test
     $manifestFile->setEncryptionKeyId($encryptionKeyId);
     $result = $manifestFile->getEncryptionKeyId();
     // Assert
     $this->assertEquals($encryptionKeyId, $result);
 }