コード例 #1
0
ファイル: html.Test.php プロジェクト: Ariadne-CMS/arc-html
 function testHTMLBasics()
 {
     $doctype = \arc\html::doctype();
     $this->assertEquals('<!doctype html>', (string) $doctype);
     $comment = \arc\html::comment('A comment');
     $this->assertEquals('<!-- A comment -->', (string) $comment);
 }