* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Commands; use \PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands * @group realm-connection */ class ConnectionPingTest extends CommandTestCase { /** * {@inheritdoc} */ protected function getExpectedCommand() { return 'Predis\Commands\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()); } }