1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-30 09:10:21 +02:00

Optimize tests

This commit is contained in:
Oliver Vogel
2024-12-06 17:32:55 +01:00
parent 69daa96f66
commit b9a16d4df6
120 changed files with 292 additions and 185 deletions

View File

@@ -8,10 +8,12 @@ use Intervention\Image\Drivers\SpecializableAnalyzer;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Tests\BaseTestCase;
use Mockery;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(SpecializableAnalyzer::class)]
final class SpecializableAnalyzerTest extends BaseTestCase
{
public function testAnalyzer(): void
public function testAnalyze(): void
{
$analyzer = Mockery::mock(SpecializableAnalyzer::class)->makePartial();
$image = Mockery::mock(ImageInterface::class);