You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
422 B

--TEST--
DOMDocumentFragment::__construct() with too many errors.
--CREDITS--
Eric Lee Stewart <ericleestewart@gmail.com>
# TestFest Atlanta 2009-05-24
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
try {
$fragment = new DOMDocumentFragment("root");
} catch (TypeException $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECTF--
DOMDocumentFragment::__construct() expects exactly 0 parameters, 1 given