Exemple #1
0
 /**
  * @expectedException Zend\Feed\Writer\Exception\ExceptionInterface
  */
 public function testAddAuthorThrowsExceptionIfValueGreaterThan255CharsLength()
 {
     $entry = new Writer\Entry();
     $entry->addItunesAuthor(str_repeat('a', 256));
 }