home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
tests
➕ New
📤 Upload
✎ Editing:
RectangleCommandTest.php
← Back
<?php use Intervention\Image\Commands\RectangleCommand; class RectangleCommandTest extends PHPUnit_Framework_TestCase { public function tearDown() { Mockery::close(); } public function testGd() { $resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg'); $driver = Mockery::mock('\Intervention\Image\Gd\Driver'); $driver->shouldReceive('getDriverName')->once()->andReturn('Gd'); $image = Mockery::mock('\Intervention\Image\Image'); $image->shouldReceive('getDriver')->once()->andReturn($driver); $image->shouldReceive('getCore')->once()->andReturn($resource); $command = new RectangleCommand(array(10, 15, 100, 150)); $result = $command->execute($image); $this->assertTrue($result); $this->assertFalse($command->hasOutput()); } public function testImagick() { $imagick = Mockery::mock('\Imagick'); $imagick->shouldReceive('drawimage'); $driver = Mockery::mock('\Intervention\Image\Imagick\Driver'); $driver->shouldReceive('getDriverName')->once()->andReturn('Imagick'); $image = Mockery::mock('\Intervention\Image\Image'); $image->shouldReceive('getDriver')->once()->andReturn($driver); $image->shouldReceive('getCore')->once()->andReturn($imagick); $command = new RectangleCommand(array(10, 15, 100, 150)); $result = $command->execute($image); $this->assertTrue($result); $this->assertFalse($command->hasOutput()); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel