shouldReceive('getCore')->once()->andReturn($resource); $command = new BrightnessGd(array(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(array(12)); $result = $command->execute($image); $this->assertTrue($result); } }