Annotation of embedaddon/php/ext/gd/tests/imagefilter_error19.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Testing wrong parameter type of BRIGHTNESS in imagefilter() of GD library
        !             3: --CREDITS--
        !             4: Guilherme Blanco <guilhermeblanco [at] hotmail [dot] com>
        !             5: #testfest PHPSP on 2009-06-20
        !             6: --SKIPIF--
        !             7: <?php 
        !             8: if (!extension_loaded("gd")) die("skip GD not present");
        !             9: ?>
        !            10: --FILE--
        !            11: <?php
        !            12: $image = imagecreatetruecolor(180, 30);
        !            13: 
        !            14: var_dump(imagefilter($image, IMG_FILTER_BRIGHTNESS, 'wrong parameter'));
        !            15: ?>
        !            16: --EXPECTF--
        !            17: Warning: imagefilter() expects parameter 3 to be long, %unicode_string_optional% given in %s on line %d
        !            18: bool(false)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>