12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace Predis\Command;
- class ServerShutdownTest extends PredisCommandTestCase
- {
-
- protected function getExpectedCommand()
- {
- return 'Predis\Command\ServerShutdown';
- }
-
- protected function getExpectedId()
- {
- return 'SHUTDOWN';
- }
-
- public function testFilterArguments()
- {
- $command = $this->getCommand();
- $command->setArguments(array());
- $this->assertSame(array(), $command->getArguments());
- }
- }
|