Exemplo n.º 1
0
 /**
  * testDocType method
  *
  * @return void
  */
 public function testDocType()
 {
     $result = $this->Html->docType();
     $expected = '<!DOCTYPE html>';
     $this->assertEquals($expected, $result);
     $result = $this->Html->docType('html4-strict');
     $expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">';
     $this->assertEquals($expected, $result);
     $this->assertNull($this->Html->docType('non-existing-doctype'));
 }
Exemplo n.º 2
0
 /**
  * testDocType method
  *
  * @access public
  * @return void
  */
 function testDocType()
 {
     $result = $this->html->docType('xhtml-strict');
     $expected = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ';
     $expected .= '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
     $this->assertEqual($result, $expected);
     $result = $this->html->docType('html4-strict');
     $expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ';
     $expected .= '"http://www.w3.org/TR/html4/strict.dtd">';
     $this->assertEqual($result, $expected);
     $this->assertNull($this->html->docType('badness'));
 }