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

test_EVAL_() public method

public test_EVAL_ ( )
    public function test_EVAL_()
    {
        $this->assertEquals("eval script 1 keys args", $this->redis->EVAL_("script", ["keys"], ["args"]));
        $this->assertEquals("eval script 2 keys k1 args", $this->redis->EVAL_("script", ["keys", 'k1'], ["args"]));
        $this->assertEquals("eval script 2 keys k1 args arg1", $this->redis->EVAL_("script", ["keys", 'k1'], ["args", 'arg1']));
    }
TestRedisServer