summaryrefslogtreecommitdiff
path: root/ext/xsl/tests/xsltprocessor_removeParameter-wrongparams.phpt
blob: bbfdc20cd75b88f6d00de8d3cd3ddb7d44664f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Check xsltprocessor::removeParameter wrong parameter handling
--SKIPIF--
<?php 
        if (!extension_loaded('xsl')) {
                die("skip\n");
        }
?>
--FILE--
<?php
include dirname(__FILE__) .'/prepare.inc';
$proc->removeParameter();
$proc->removeParameter(array(), array());
$proc->removeParameter('', array());
--EXPECTF--
Warning: XSLTProcessor::removeParameter() expects exactly 2 parameters, 0 given in %s on line %d

Warning: XSLTProcessor::removeParameter() expects parameter 1 to be string, array given in %s on line %d

Warning: XSLTProcessor::removeParameter() expects parameter 2 to be string, array given in %s on line %d
--CREDITS--
Christian Weiske, cweiske@php.net
PHP Testfest Berlin 2009-05-09