/**
  * @covers WindowsAzure\ServiceManagement\Models\CreateStorageServiceOptions::setDescription
  * @covers WindowsAzure\ServiceManagement\Models\CreateStorageServiceOptions::getDescription
  */
 public function testSetDescription()
 {
     // Setup
     $options = new CreateStorageServiceOptions();
     $expected = 'Description';
     // Test
     $options->setDescription($expected);
     // Assert
     $this->assertEquals($expected, $options->getDescription());
 }