makePartial(); $image = Mockery::mock(ImageInterface::class); $image->shouldReceive('analyze')->andReturn('test'); $result = $analyzer->analyze($image); $this->assertEquals('test', $result); } }