mirror of
https://github.com/Intervention/image.git
synced 2025-08-18 19:51:22 +02:00
Add config tests
This commit is contained in:
18
tests/Unit/ConfigTest.php
Normal file
18
tests/Unit/ConfigTest.php
Normal 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());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user