/**
  * @covers WindowsAzure\ServiceManagement\Models\GetDeploymentOptions::setDeploymentName
  * @covers WindowsAzure\ServiceManagement\Models\GetDeploymentOptions::getDeploymentName
  */
 public function testSetDeploymentName()
 {
     // Setup
     $expected = 'my deployment';
     $options = new GetDeploymentOptions();
     // Test
     $options->setDeploymentName($expected);
     // Assert
     $this->assertEquals($expected, $options->getDeploymentName());
 }