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

test_SHUTDOWN() public method

public test_SHUTDOWN ( )
    public function test_SHUTDOWN()
    {
        $this->assertEquals("shutdown", $this->redis->SHUTDOWN());
        $this->assertEquals("shutdown save", $this->redis->SHUTDOWN(true));
        $this->assertEquals("shutdown nosave", $this->redis->SHUTDOWN(false, true));
        $this->assertEquals("shutdown save", $this->redis->SHUTDOWN(true, true));
    }
TestRedisServer