Ejemplo n.º 1
0
 /**
  * @expectedException Zend\Feed\Writer\Exception
  */
 public function testAddAuthorThrowsExceptionIfValueGreaterThan255CharsLength()
 {
     $feed = new Writer\Feed;
     $feed->addItunesAuthor(str_repeat('a', 256));
 }