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

it_can_srem() 공개 메소드

public it_can_srem ( )
    public function it_can_srem()
    {
        $this->client->srem('test', ['test'])->shouldBeCalled();
        $this->sRem('test', ['test']);
        $this->client->srem('test', ['test'])->willThrow($this->predisException);
        $this->shouldThrow(DriverException::class)->during('sRem', ['test', ['test']]);
    }