xref: /php-src/ext/spl/tests/SplHeap_isEmpty.phpt (revision d679f022)
1--TEST--
2Check that SplHeap::isEmpty standard success test
3--CREDITS--
4PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
5--FILE--
6<?php
7
8$h = new SplMaxHeap();
9
10var_dump($h->isEmpty());
11
12?>
13--EXPECT--
14bool(true)
15