summaryrefslogtreecommitdiff
path: root/ext/spl/tests/pqueue_current_error.phpt
blob: 7fdf0af5e43a0dbc6ce538dc159d9f513e683c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
SPL: SplPriorityQueue current on empty queue should give null
--CREDITS--
Mark Schaschke (mark@fractalturtle.com)
TestFest London May 2009
--FILE--
<?php
$h = new SplPriorityQueue();
var_dump($h->current());
?>
--EXPECT--
NULL