%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/paste.varak.net-5.6/vendor/predis/predis/tests/Predis/Command/
Upload File :
Create Path :
Current File : /www/varak.net/paste.varak.net-5.6/vendor/predis/predis/tests/Predis/Command/ConnectionPingTest.php

<?php

/*
 * This file is part of the Predis package.
 *
 * (c) Daniele Alessandri <suppakilla@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Predis\Command;

/**
 * @group commands
 * @group realm-connection
 */
class ConnectionPingTest extends PredisCommandTestCase
{
    /**
     * {@inheritdoc}
     */
    protected function getExpectedCommand()
    {
        return 'Predis\Command\ConnectionPing';
    }

    /**
     * {@inheritdoc}
     */
    protected function getExpectedId()
    {
        return 'PING';
    }

    /**
     * @group disconnected
     */
    public function testFilterArguments()
    {
        $arguments = array();
        $expected = array();

        $command = $this->getCommand();
        $command->setArguments($arguments);

        $this->assertSame($expected, $command->getArguments());
    }

    /**
     * @group disconnected
     */
    public function testParseResponse()
    {
        $command = $this->getCommand();

        $this->assertTrue($command->parseResponse('PONG'));
    }

    /**
     * @group connected
     */
    public function testAlwaysReturnsTrue()
    {
        $redis = $this->getClient();

        $this->assertTrue($redis->ping());
    }
}

Zerion Mini Shell 1.0