示例#1
0
 /**
  * @expectedException Zend_Feed_Exception
  */
 public function testSetBlockThrowsExceptionIfValueGreaterThan255CharsLength()
 {
     $feed = new Zend_Feed_Writer_Feed();
     $feed->setItunesBlock(str_repeat('a', 256));
 }