PATH:
opt
/
cpanel
/
ea-php73
/
root
/
usr
/
share
/
tests
/
pear
/
XML_Util
/
tests
<?php class GetDocTypeDeclarationTests extends AbstractUnitTests { /** * @covers XML_Util::getDocTypeDeclaration() */ public function testGetDocTypeDeclarationUsingRoot() { $expected = "<!DOCTYPE rootTag>"; $this->assertEquals($expected, XML_Util::getDocTypeDeclaration("rootTag")); } /** * @covers XML_Util::getDocTypeDeclaration() */ public function testGetDocTypeDeclarationUsingRootAndStringUri() { $expected = "<!DOCTYPE rootTag SYSTEM \"myDocType.dtd\">"; $this->assertEquals($expected, XML_Util::getDocTypeDeclaration("rootTag", "myDocType.dtd")); } /** * @covers XML_Util::getDocTypeDeclaration() */ public function testGetDocTypeDeclarationUsingRootAndArrayUri() { $uri = array( 'uri' => 'http://pear.php.net/dtd/package-1.0', 'id' => '-//PHP//PEAR/DTD PACKAGE 0.1' ); $expected = "<!DOCTYPE rootTag PUBLIC \"-//PHP//PEAR/DTD PACKAGE 0.1\" \"http://pear.php.net/dtd/package-1.0\">"; $this->assertEquals($expected, XML_Util::getDocTypeDeclaration("rootTag", $uri)); } /** * @covers XML_Util::getDocTypeDeclaration() */ public function testGetDocTypeDeclarationUsingRootAndArrayUriAndInternalDtd() { $uri = array( 'uri' => 'http://pear.php.net/dtd/package-1.0', 'id' => '-//PHP//PEAR/DTD PACKAGE 0.1' ); $dtdEntry = '<!ELEMENT additionalInfo (#PCDATA)>'; $expected = <<< EOF <!DOCTYPE rootTag PUBLIC "-//PHP//PEAR/DTD PACKAGE 0.1" "http://pear.php.net/dtd/package-1.0" [ <!ELEMENT additionalInfo (#PCDATA)> ]> EOF; $this->assertEquals($expected, XML_Util::getDocTypeDeclaration("rootTag", $uri, $dtdEntry)); } }
[-] CreateStartElementTests.php
[edit]
[-] CreateTagFromArrayTests.php
[edit]
[-] CreateEndElementTests.php
[edit]
[-] AttributesToStringTests.php
[edit]
[+]
..
[-] RaiseErrorTests.php
[edit]
[-] Bug5392Tests.php
[edit]
[-] Bug18343Tests.php
[edit]
[-] Bug21177Tests.php
[edit]
[-] ApiVersionTests.php
[edit]
[-] AbstractUnitTests.php
[edit]
[-] Bug21184Tests.php
[edit]
[-] ReverseEntitiesTests.php
[edit]
[-] CollapseEmptyTagsTests.php
[edit]
[-] Bug4950Tests.php
[edit]
[-] CreateTagTests.php
[edit]
[-] GetDocTypeDeclarationTests.php
[edit]
[-] SplitQualifiedNameTests.php
[edit]
[-] CreateCommentTests.php
[edit]
[-] IsValidNameTests.php
[edit]
[-] GetXmlDeclarationTests.php
[edit]
[-] CreateCDataSectionTests.php
[edit]
[-] ReplaceEntitiesTests.php
[edit]