PATH: //opt/cloudlinux/alt-php74/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: SplitQualifiedNameTests.php
<?php class SplitQualifiedNameTests extends AbstractUnitTests { /** * @covers XML_Util::splitQualifiedName() */ public function testSplitQualifiedNameWithoutNamespace() { $original = "xslt:stylesheet"; $expected = array( 'namespace' => 'xslt', 'localPart' => 'stylesheet', ); $this->assertEquals($expected, XML_Util::splitQualifiedName($original)); } /** * @covers XML_Util::splitQualifiedName() */ public function testSplitQualifiedNameWithNamespace() { $original = "stylesheet"; $namespace = "myNs"; $expected = array( 'namespace' => 'myNs', 'localPart' => 'stylesheet', ); $this->assertEquals($expected, XML_Util::splitQualifiedName($original, $namespace)); } }
SIMPAN PERUBAHAN