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