예제 #1
0
 /**
  * @issue ZF-3577
  * @link http://framework.zend.com/issues/browse/ZF-3577
  */
 public function testZF3577()
 {
     $this->helper->setAutoEscape(true);
     $this->helper->__invoke('Some Title');
     $this->helper->setPrefix('Prefix & ');
     $this->helper->setPostfix(' & Postfix');
     $this->assertEquals('<title>Prefix &amp; Some Title &amp; Postfix</title>', $this->helper->toString());
 }