1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 10:03:18 +02:00
Files
archived-php-src/ext/dom/tests/DOMDocument_adoptNode.phpt
2019-11-08 15:05:35 +01:00

17 lines
282 B
PHP

--TEST--
DOMDocument::adoptNode not implemented
--SKIPIF--
<?php
require_once('skipif.inc');
?>
--FILE--
<?php
$dom = new DOMDocument();
$dom->loadXML("<root />");
$dom->adoptNode($dom->documentElement);
?>
--EXPECTF--
Warning: DOMDocument::adoptNode(): Not yet implemented in %s