1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-18 03:31:19 +02:00

Add config tests

This commit is contained in:
Oliver Vogel
2024-05-09 11:49:35 +02:00
parent fa2bf7d793
commit 51a81c845b

18
tests/Unit/ConfigTest.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Intervention\Image\Tests\Unit;
use Intervention\Image\Config;
use Intervention\Image\Tests\BaseTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(Config::class)]
final class ConfigTest extends BaseTestCase
{
public function testConstructor(): void
{
$this->assertInstanceOf(Config::class, new Config());
}
}