/** 
  * @covers WindowsAzure\ServiceBus\Models\SubscriptionInfo::getEnableBatchedOperations
  * @covers WindowsAzure\ServiceBus\Models\SubscriptionInfo::setEnableBatchedOperations
  */
 public function testGetSetEnableBatchedOperations()
 {
     // Setup
     $expected = 'testEnableBatchedOperations';
     $subscriptionInfo = new SubscriptionInfo();
     // Test
     $subscriptionInfo->setEnableBatchedOperations($expected);
     $actual = $subscriptionInfo->getEnableBatchedOperations();
     // Assert
     $this->assertEquals($expected, $actual);
 }