/**
  * @covers WindowsAzure\ServiceManagement\Models\GetStorageServicePropertiesResult::setStorageService
  * @covers WindowsAzure\ServiceManagement\Models\GetStorageServicePropertiesResult::getStorageService
  */
 public function testSetStorageService()
 {
     // Setup
     $expected = new StorageService();
     $result = new GetStorageServicePropertiesResult();
     // Test
     $result->setStorageService($expected);
     // Assert
     $this->assertEquals($expected, $result->getStorageService());
 }