summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplHeap_isEmpty.phpt
blob: e179dbc8ece8008420f6dc35c63244621f6e89a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Check that SplHeap::isEmpty standard success test
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php

$h = new SplMaxHeap();

var_dump($h->isEmpty());

?>
--EXPECTF--
bool(true)