Example #1
0
 /**
  * @covers Debril\RssAtomBundle\Protocol\Parser\Item::setComment
  */
 public function testSetComment()
 {
     $newComment = 'http://newlinktothecomments.net';
     $this->object->setComment($newComment);
     $this->assertEquals($newComment, $this->object->getComment());
 }