spec\MGDigital\BusQue\Redis\Predis\PredisAdapterSpec::it_can_hget PHP 메소드

it_can_hget() 공개 메소드

public it_can_hget ( )
    public function it_can_hget()
    {
        $this->client->hget('test', 'test')->shouldBeCalled()->willReturn('test');
        $this->hGet('test', 'test')->shouldReturn('test');
        $this->client->hget('test', 'test')->willThrow($this->predisException);
        $this->shouldThrow(DriverException::class)->during('hGet', ['test', 'test']);
    }