Ejemplo n.º 1
0
 public function testSetCommentCountThrowsExceptionOnInvalidNonIntegerParameter()
 {
     $entry = new Zend_Feed_Writer_Entry();
     try {
         $entry->setCommentCount('a');
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }