コード例 #1
0
ファイル: EscapeHtmlAttrTest.php プロジェクト: navassouza/zf2
 public function testSettingValidEncodingShouldNotThrowExceptions()
 {
     foreach ($this->supportedEncodings as $value) {
         $helper = new EscapeHelper();
         $helper->setEncoding($value);
         $helper->getEscaper();
     }
 }