PATH: //opt/cloudlinux/alt-php73/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: RaiseErrorTests.php
<?php class RaiseErrorTests extends AbstractUnitTests { /** * @covers XML_Util::raiseError() */ public function testRaiseError() { $code = 12345; $message = "I am an error"; $error = XML_Util::raiseError($message, $code); $this->assertInstanceOf('PEAR_Error', $error); $this->assertEquals($message, $error->getMessage()); $this->assertEquals($code, $error->getCode()); } }
SIMPAN PERUBAHAN