Esempio n. 1
0
 function testHTMLBasics()
 {
     $doctype = \arc\html::doctype();
     $this->assertEquals('<!doctype html>', (string) $doctype);
     $comment = \arc\html::comment('A comment');
     $this->assertEquals('<!-- A comment -->', (string) $comment);
 }