Ejemplo n.º 1
0
 /**
  * @covers Zend\Feed\Writer\Feed::removeEntry
  */
 public function testRemoveEntryException()
 {
     $writer = new Writer\Feed();
     try {
         $writer->removeEntry(1);
         $this->fail();
     } catch (Writer\Exception\InvalidArgumentException $e) {
     }
 }