php-src/ext/dom/tests/DOMDocument_createAttribute_error1.phpt

29 lines
538 B
Plaintext
Raw Normal View History

2008-05-15 12:50:28 +00:00
--TEST--
DomDocument::createAttribute() - error test for DomDocument::createAttribute()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
2008-12-30 15:56:44 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
2008-05-15 12:50:28 +00:00
--FILE--
<?php
$doc = new DOMDocument;
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
try {
$failed_test_attribute = $doc->createAttribute("ha haha");
$node->appendChild($failed_test_attribute);
echo $doc->saveXML();
}
catch (DOMException $e) {
echo 'Test failed!', PHP_EOL;
}
?>
--EXPECT--
Test failed!