spec\MGDigital\BusQue\Redis\PHPRedis\PHPRedisAdapterSpec::it_can_sadd PHP Method

it_can_sadd() public method

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