xsltprocessor_removeParameter-invalidparam.phpt 414 B

123456789101112131415161718
  1. --TEST--
  2. Check xsltprocessor::removeParameter with invalid parameter
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('xsl')) {
  6. die("skip\n");
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. include dirname(__FILE__) .'/prepare.inc';
  12. $proc->importStylesheet($xsl);
  13. var_dump($proc->removeParameter('', 'doesnotexist'));
  14. --EXPECT--
  15. bool(false)
  16. --CREDITS--
  17. Christian Weiske, cweiske@php.net
  18. PHP Testfest Berlin 2009-05-09