imageloadfont_error2.phpt 393 B

12345678910111213
  1. --TEST--
  2. Testing that imageloadfont() breaks on invalid file passed as first argument
  3. --CREDITS--
  4. Austin Drouare <austin.drouare [at] gmail [dot] com> #testfest #tek11
  5. --EXTENSIONS--
  6. gd
  7. --FILE--
  8. <?php
  9. var_dump( imageloadfont('\src\invalidfile.font') );
  10. ?>
  11. --EXPECTF--
  12. Warning: imageloadfont(\src\invalidfile.font): Failed to open stream: No such file or directory in %s on line %d
  13. bool(false)