コード例 #1
0
ファイル: HtmlTest.php プロジェクト: romain-pierre/core
 public function testUnsupportedCharset()
 {
     $this->expectException(\ErrorException::class);
     $render = new Html($this->view);
     $render->setCharset('1-9588-osi');
     $render->entities('éè');
 }