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--EXPECTF-- 14bool(true) 15 16