/** 
  * Sets the title. 
  * 
  * @param string $title The title of the rule info.
  * 
  * @return none
  */
 public function setTitle($title)
 {
     $this->_entry->setTitle($title);
 }
 /**
  * @covers WindowsAzure\Common\Internal\Atom\Entry::getTitle
  * @covers WindowsAzure\Common\Internal\Atom\Entry::setTitle
  */
 public function testGetSetTitle()
 {
     // Setup
     $expected = 'testTitle';
     $entry = new Entry();
     // Test
     $entry->setTitle($expected);
     $actual = $entry->getTitle();
     // Assert
     $this->assertEquals($expected, $actual);
 }