/**
  * @covers WindowsAzure\ServiceManagement\Models\CreateStorageServiceOptions::setLocation
  * @covers WindowsAzure\ServiceManagement\Models\CreateStorageServiceOptions::getLocation
  */
 public function testSetLocation()
 {
     // Setup
     $options = new CreateStorageServiceOptions();
     $expected = 'Location';
     // Test
     $options->setLocation($expected);
     // Assert
     $this->assertEquals($expected, $options->getLocation());
 }