示例#1
0
 /**
  * Gets enable batched operations. 
  * 
  * @return boolean
  */
 public function getEnableBatchedOperations()
 {
     return $this->_subscriptionDescription->getEnableBatchedOperations();
 }
 /** 
  * @covers WindowsAzure\ServiceBus\Models\SubscriptionDescription::getEnableBatchedOperations
  * @covers WindowsAzure\ServiceBus\Models\SubscriptionDescription::setEnableBatchedOperations
  */
 public function testGetSetEnableBatchedOperations()
 {
     // Setup
     $expected = 'testEnableBatchedOperations';
     $subscriptionDescription = new SubscriptionDescription();
     // Test
     $subscriptionDescription->setEnableBatchedOperations($expected);
     $actual = $subscriptionDescription->getEnableBatchedOperations();
     // Assert
     $this->assertEquals($expected, $actual);
 }