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