예제 #1
0
파일: FeedTest.php 프로젝트: pnaq57/zf2demo
 /**
  * @covers Zend\Feed\Writer\Feed::removeEntry
  */
 public function testRemoveEntryException()
 {
     $writer = new Writer\Feed();
     try {
         $writer->removeEntry(1);
         $this->fail();
     } catch (Writer\Exception\InvalidArgumentException $e) {
     }
 }