Files
alrahma_sunday_school/vendor/mike42/gfx-php/test/unit/ImageTest.php
T
2026-02-10 22:11:06 -05:00

12 lines
243 B
PHP

<?php
use Mike42\GfxPhp\Image;
use PHPUnit\Framework\TestCase;
class ImageTest extends TestCase
{
public function testBadFilename() {
$this -> expectException(Exception::class);
Image::fromFile("not a real file");
}
}