/** 
  * @covers WindowsAzure\ServiceBus\Models\BrokerProperties::getReplyTo
  * @covers WindowsAzure\ServiceBus\Models\BrokerProperties::setReplyTo
  */
 public function testGetSetReplyTo()
 {
     // Setup
     $expected = 'testReplyTo';
     $brokerProperties = new BrokerProperties();
     // Test
     $brokerProperties->setReplyTo($expected);
     $actual = $brokerProperties->getReplyTo();
     // Assert
     $this->assertEquals($expected, $actual);
 }
 /**
  * Gets reply to. 
  * 
  * @return string 
  */
 public function getReplyTo()
 {
     return $this->_brokerProperties->getReplyTo();
 }