Files
bm/public_html/vendor/intervention/image/tests/BrightnessCommandTest.php
2025-09-24 13:26:28 +02:00

35 lines
1.1 KiB
PHP

<?php
use Intervention\Image\Gd\Commands\BrightnessCommand as BrightnessGd;
use Intervention\Image\Imagick\Commands\BrightnessCommand as BrightnessImagick;
use PHPUnit\Framework\TestCase;
class BrightnessCommandTest extends TestCase
{
public function tearDown()
{
Mockery::close();
}
public function testGd()
{
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($resource);
$command = new BrightnessGd([12]);
$result = $command->execute($image);
$this->assertTrue($result);
}
public function testImagick()
{
$imagick = Mockery::mock('Imagick');
$imagick->shouldReceive('modulateimage')->with(112, 100, 100)->andReturn(true);
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($imagick);
$command = new BrightnessImagick([12]);
$result = $command->execute($image);
$this->assertTrue($result);
}
}