Example #1
0
 /**
  * @covers Debril\RssAtomBundle\Protocol\Parser\Item::setSummary
  *
  * @todo   Implement testSetSummary().
  */
 public function testSetSummary()
 {
     $newSummary = 'a brand new summary';
     $this->object->setSummary($newSummary);
     $this->assertEquals($newSummary, $this->object->getSummary());
 }