makePartial(); $image = Mockery::mock(ImageInterface::class); $image->shouldReceive('modify')->andReturn($image); $result = $modifier->apply($image); $this->assertInstanceOf(ImageInterface::class, $result); } }