%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/league/glide/tests/Manipulators/ |
Current File : /var/www/html/o91-api/vendor/league/glide/tests/Manipulators/PixelateTest.php |
<?php namespace League\Glide\Manipulators; use Mockery; class PixelateTest extends \PHPUnit_Framework_TestCase { private $manipulator; public function setUp() { $this->manipulator = new Pixelate(); } public function tearDown() { Mockery::close(); } public function testCreateInstance() { $this->assertInstanceOf('League\Glide\Manipulators\Pixelate', $this->manipulator); } public function testRun() { $image = Mockery::mock('Intervention\Image\Image', function ($mock) { $mock->shouldReceive('pixelate')->with('10')->once(); }); $this->assertInstanceOf( 'Intervention\Image\Image', $this->manipulator->setParams(['pixel' => '10'])->run($image) ); } public function testGetPixelate() { $this->assertSame(50, $this->manipulator->setParams(['pixel' => '50'])->getPixelate()); $this->assertSame(50, $this->manipulator->setParams(['pixel' => 50.50])->getPixelate()); $this->assertSame(null, $this->manipulator->setParams(['pixel' => null])->getPixelate()); $this->assertSame(null, $this->manipulator->setParams(['pixel' => 'a'])->getPixelate()); $this->assertSame(null, $this->manipulator->setParams(['pixel' => '-1'])->getPixelate()); $this->assertSame(null, $this->manipulator->setParams(['pixel' => '1001'])->getPixelate()); } }