Annotation of embedaddon/php/ext/spl/tests/SplHeap_isEmpty.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Check that SplHeap::isEmpty standard success test
                      3: --CREDITS--
                      4: PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
                      5: --FILE--
                      6: <?php
                      7: 
                      8: $h = new SplMaxHeap();
                      9: 
                     10: var_dump($h->isEmpty());
                     11: 
                     12: ?>
                     13: --EXPECTF--
                     14: bool(true)
                     15: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>