ImageTest.php 243B

123456789101112
  1. <?php
  2. use Mike42\GfxPhp\Image;
  3. use PHPUnit\Framework\TestCase;
  4. class ImageTest extends TestCase
  5. {
  6. public function testBadFilename() {
  7. $this -> expectException(Exception::class);
  8. Image::fromFile("not a real file");
  9. }
  10. }