Jamm\Memory\Tests\TestRedisServer::test_BITOP PHP Method

test_BITOP() public method

public test_BITOP ( )
    public function test_BITOP()
    {
        $this->assertEquals('bitop and destkey key', $this->redis->BITOP("AND", "destkey", "key"));
        $this->assertEquals("bitop or destkey key key1", $this->redis->BITOP("OR", "destkey", "key", 'key1'));
    }
TestRedisServer