Exemple #1
0
 /**
  * @expectedException Zend_Feed_Exception
  */
 public function testSetCategoriesThrowsExceptionIfAnyCatNameGreaterThan255CharsLength()
 {
     $feed = new Zend_Feed_Writer_Feed();
     $cats = array('cat1', 'cat2' => array('cat2-1', str_repeat('a', 256)));
     $feed->setItunesCategories($cats);
     $this->assertEquals($cats, $feed->getItunesAuthors());
 }