Exemplo n.º 1
0
 /**
  * Gets enable batched operation.
  * 
  * @return boolean
  */
 public function getEnableBatchedOperations()
 {
     return $this->_queueDescription->getEnableBatchedOperations();
 }
 /** 
  * @covers WindowsAzure\ServiceBus\Models\QueueDescription::getEnableBatchedOperations
  * @covers WindowsAzure\ServiceBus\Models\QueueDescription::setEnableBatchedOperations
  */
 public function testGetSetEnableBatchedOperations()
 {
     // Setup
     $expected = 'testEnableBatchedOperations';
     $queueDescription = new QueueDescription();
     // Test
     $queueDescription->setEnableBatchedOperations($expected);
     $actual = $queueDescription->getEnableBatchedOperations();
     // Assert
     $this->assertEquals($expected, $actual);
 }