예제 #1
0
파일: FeedTest.php 프로젝트: narixx/zf2
 public function testAddsManyCategories()
 {
     $writer = new Writer\Feed();
     $writer->addCategories(array(array('term' => 'cat_dog'), array('term' => 'cat_mouse')));
     $this->assertEquals(array(array('term' => 'cat_dog'), array('term' => 'cat_mouse')), $writer->getCategories());
 }