summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMDocumentFragment_construct_error_001.phpt
blob: 819306566cc27e358fe65c590d2c227a24ef7ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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 (TypeError $e) {
    echo $e->getMessage(), "\n";
}
?>
--EXPECT--
DOMDocumentFragment::__construct() expects exactly 0 parameters, 1 given