X7ROOT File Manager
Current Path:
/opt/alt/php71/usr/share/pear/test/XML_Util/tests
opt
/
alt
/
php71
/
usr
/
share
/
pear
/
test
/
XML_Util
/
tests
/
ðŸ“
..
📄
AbstractUnitTests.php
(424 B)
📄
ApiVersionTests.php
(221 B)
📄
AttributesToStringTests.php
(7.52 KB)
📄
Bug18343Tests.php
(1.7 KB)
📄
Bug21177Tests.php
(1.03 KB)
📄
Bug21184Tests.php
(450 B)
📄
Bug4950Tests.php
(729 B)
📄
Bug5392Tests.php
(767 B)
📄
CollapseEmptyTagsTests.php
(4.25 KB)
📄
CreateCDataSectionTests.php
(362 B)
📄
CreateCommentTests.php
(340 B)
📄
CreateEndElementTests.php
(613 B)
📄
CreateStartElementTests.php
(5.28 KB)
📄
CreateTagFromArrayTests.php
(13.18 KB)
📄
CreateTagTests.php
(7.79 KB)
📄
GetDocTypeDeclarationTests.php
(1.74 KB)
📄
GetXmlDeclarationTests.php
(1.14 KB)
📄
IsValidNameTests.php
(1.94 KB)
📄
RaiseErrorTests.php
(448 B)
📄
ReplaceEntitiesTests.php
(4.22 KB)
📄
ReverseEntitiesTests.php
(4.21 KB)
📄
SplitQualifiedNameTests.php
(839 B)
Editing: GetDocTypeDeclarationTests.php
<?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)); } }
Upload File
Create Folder