Ejemplo n.º 1
0
 public function testSetCommentFeedLinkThrowsExceptionOnInvalidType()
 {
     $entry = new Zend_Feed_Writer_Entry();
     try {
         $entry->setCommentFeedLink(array('uri' => 'http://www.example.com/id/comments', 'type' => 'foo'));
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }