imageellipse_error3.phpt 501 B

123456789101112131415161718192021
  1. --TEST--
  2. Testing wrong param passing imageellipse() of GD library
  3. --CREDITS--
  4. Ivan Rosolen <contato [at] ivanrosolen [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. // Create a image
  13. $image = imagecreatetruecolor(400, 300);
  14. // try to draw a white ellipse
  15. imageellipse($image, 200, 'wrong param', 300, 200, 16777215);
  16. ?>
  17. --EXPECTF--
  18. Warning: imageellipse() expects parameter 3 to be int, %s given in %s on line %d