Annotation of embedaddon/php/ext/gd/tests/imagelayereffect_error1.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Testing imagelayereffect() with invalid resource of GD library
! 3: --CREDITS--
! 4: Rafael Dohms <rdohms [at] gmail [dot] com>
! 5: #testfest PHPSP on 2009-06-20
! 6: --SKIPIF--
! 7: <?php
! 8: if (!extension_loaded("gd")) die("skip GD not present");
! 9: if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected');
! 10: ?>
! 11: --FILE--
! 12: <?php
! 13: $layer = imagelayereffect('invalid_resource', IMG_EFFECT_REPLACE);
! 14: ?>
! 15: --EXPECTF--
! 16: Warning: imagelayereffect() expects parameter 1 to be resource, %s given in %s on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>