xsltprocessor_removeParameter-invalidparam.phpt 324 B

123456789101112131415
  1. --TEST--
  2. Check xsltprocessor::removeParameter with invalid parameter
  3. --EXTENSIONS--
  4. xsl
  5. --FILE--
  6. <?php
  7. include __DIR__ .'/prepare.inc';
  8. $proc->importStylesheet($xsl);
  9. var_dump($proc->removeParameter('', 'doesnotexist'));
  10. ?>
  11. --EXPECT--
  12. bool(false)
  13. --CREDITS--
  14. Christian Weiske, cweiske@php.net
  15. PHP Testfest Berlin 2009-05-09