summaryrefslogtreecommitdiff
path: root/ext/spl/tests/recursive_tree_iterator_002.phpt
blob: 7d82b191e25f6ff54caab0312890d9e3b724a880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
SPL: RecursiveTreeIterator(void)
--INI--
error_reporting=E_ALL&~E_NOTICE
--FILE--
<?php
try {
	new RecursiveTreeIterator();
} catch (InvalidArgumentException $e) {
	echo "InvalidArgumentException thrown\n";
}
?>
===DONE===
--EXPECT--
InvalidArgumentException thrown
===DONE===