Ejemplo n.º 1
0
 /**
  * @expectedException Zend\Feed\Writer\Exception
  */
 public function testSetKeywordsThrowsExceptionIfFormattedKeywordsExceeds255CharLength()
 {
     $feed = new Writer\Feed;
     $words = array(
         str_repeat('a', 253), str_repeat('b', 2)
     );
     $feed->setItunesKeywords($words);
 }