<?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)); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
AbstractUnitTests.php | File | 424 B | 0644 |
|
ApiVersionTests.php | File | 221 B | 0644 |
|
AttributesToStringTests.php | File | 7.52 KB | 0644 |
|
Bug18343Tests.php | File | 1.7 KB | 0644 |
|
Bug21177Tests.php | File | 1.03 KB | 0644 |
|
Bug21184Tests.php | File | 450 B | 0644 |
|
Bug4950Tests.php | File | 729 B | 0644 |
|
Bug5392Tests.php | File | 767 B | 0644 |
|
CollapseEmptyTagsTests.php | File | 4.25 KB | 0644 |
|
CreateCDataSectionTests.php | File | 362 B | 0644 |
|
CreateCommentTests.php | File | 340 B | 0644 |
|
CreateEndElementTests.php | File | 613 B | 0644 |
|
CreateStartElementTests.php | File | 5.28 KB | 0644 |
|
CreateTagFromArrayTests.php | File | 13.18 KB | 0644 |
|
CreateTagTests.php | File | 7.79 KB | 0644 |
|
GetDocTypeDeclarationTests.php | File | 1.74 KB | 0644 |
|
GetXmlDeclarationTests.php | File | 1.14 KB | 0644 |
|
IsValidNameTests.php | File | 1.17 KB | 0644 |
|
RaiseErrorTests.php | File | 448 B | 0644 |
|
ReplaceEntitiesTests.php | File | 4.22 KB | 0644 |
|
ReverseEntitiesTests.php | File | 4.21 KB | 0644 |
|
SplitQualifiedNameTests.php | File | 839 B | 0644 |
|