Exemple #1
0
 public function testSetCommentLinkThrowsExceptionOnInvalidUri()
 {
     $entry = new Zend_Feed_Writer_Entry();
     try {
         $entry->setCommentLink('http://');
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }