PATH: //opt/cloudlinux/alt-php71/root/usr/share/pear/test/XML_Util/tests
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 AbstractUnitTests.php
↓
X
📄 ApiVersionTests.php
↓
X
📄 AttributesToStringTests.php
↓
X
📄 Bug18343Tests.php
↓
X
📄 Bug21177Tests.php
↓
X
📄 Bug21184Tests.php
↓
X
📄 Bug4950Tests.php
↓
X
📄 Bug5392Tests.php
↓
X
📄 CollapseEmptyTagsTests.php
↓
X
📄 CreateCDataSectionTests.php
↓
X
📄 CreateCommentTests.php
↓
X
📄 CreateEndElementTests.php
↓
X
📄 CreateStartElementTests.php
↓
X
📄 CreateTagFromArrayTests.php
↓
X
📄 CreateTagTests.php
↓
X
📄 GetDocTypeDeclarationTests.php
↓
X
📄 GetXmlDeclarationTests.php
↓
X
📄 IsValidNameTests.php
↓
X
📄 RaiseErrorTests.php
↓
X
📄 ReplaceEntitiesTests.php
↓
X
📄 ReverseEntitiesTests.php
↓
X
📄 SplitQualifiedNameTests.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: GetXmlDeclarationTests.php
<?php class GetXMLDeclarationTests extends AbstractUnitTests { /** * @covers XML_Util::getXMLDeclaration() */ public function testGetXMLDeclarationUsingVersion() { $version = "1.0"; $expected = "<?xml version=\"1.0\"?>"; $this->assertEquals($expected, XML_Util::getXMLDeclaration($version)); } /** * @covers XML_Util::getXMLDeclaration() */ public function testGetXMLDeclarationUsingVersionAndEncodingAndStandalone() { $version = "1.0"; $encoding = "UTF-8"; $standalone = true; $expected = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>"; $this->assertEquals($expected, XML_Util::getXMLDeclaration($version, $encoding, $standalone)); } /** * @covers XML_Util::getXMLDeclaration() */ public function testGetXMLDeclarationUsingVersionAndStandalone() { $version = "1.0"; $encoding = null; $standalone = true; $expected = "<?xml version=\"1.0\" standalone=\"yes\"?>"; $this->assertEquals($expected, XML_Util::getXMLDeclaration($version, $encoding, $standalone)); } }
SIMPAN PERUBAHAN