php-src/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt
2008-06-03 12:42:22 +00:00

30 lines
527 B
PHP

--TEST--
DomDocument::createProcessingInstruction() - error test for DomDocument::createProcessingInstruction()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--FILE--
<?php
$doc = new DOMDocument;
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
try {
$test_proc_inst =
$doc->createProcessingInstruction( "bla bla bla" );
$node->appendChild($test_proc_inst);
echo $doc->saveXML();
}
catch (DOMException $e)
{
echo 'Test failed!', PHP_EOL;
}
?>
--EXPECT--
Test failed!