/**
  * @covers WindowsAzure\ServiceManagement\Models\GetStorageServicePropertiesResult::setUrl
  * @covers WindowsAzure\ServiceManagement\Models\GetStorageServicePropertiesResult::getUrl
  */
 public function testSetUrl()
 {
     // Setup
     $expected = 'url';
     $result = new GetStorageServicePropertiesResult();
     // Test
     $result->setUrl($expected);
     // Assert
     $this->assertEquals($expected, $result->getUrl());
 }