コード例 #1
0
 /**
  * @covers WindowsAzure\ServiceManagement\Models\Deployment::setConfiguration
  * @covers WindowsAzure\ServiceManagement\Models\Deployment::getConfiguration
  */
 public function testSetConfiguration()
 {
     // Setup
     $expected = 'configuration';
     $deployment = new Deployment();
     // Test
     $deployment->setConfiguration($expected);
     // Assert
     $this->assertEquals($expected, $deployment->getConfiguration());
 }