summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMDocumentFragment_construct_basic_001.phpt
blob: 63de77148d9727e5b8ed62d028d3caa86a5c1f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
DOMDocumentFragment::__construct().
--CREDITS--
Eric Lee Stewart <ericleestewart@gmail.com>
# TestFest Atlanta 2009-05-24
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$fragment = new DOMDocumentFragment();
var_dump(get_class($fragment));
?>
--EXPECT--
string(19) "DOMDocumentFragment"