Annotation of embedaddon/php/ext/xsl/tests/xsltprocessor_removeParameter-invalidparam.phpt, revision 1.1
1.1 ! misho 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
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>