Annotation of embedaddon/php/ext/gd/tests/imagecolordeallocate_error1.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Testing imagecolordeallocate() of GD library with invalid resource type
                      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: ?>
                     10: --FILE--
                     11: <?php
                     12: 
                     13: $image = imagecreatetruecolor(180, 30);
                     14: $white = imagecolorallocate($image, 255, 255, 255);
                     15: 
                     16: $resource = tmpfile();
                     17: 
                     18: $result = imagecolordeallocate($resource, $white);
                     19: 
                     20: ?>
                     21: --EXPECTF--
                     22: Warning: imagecolordeallocate(): supplied resource is not a valid Image resource in %s on line %d

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