spec\MGDigital\BusQue\Redis\PHPRedis\PHPRedisAdapterSpec::it_can_srem PHP Метод

it_can_srem() публичный Метод

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