CacheTool\Command\ApcuCacheInfoKeysCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( )
    public function testCommand()
    {
        $this->assertHasApcu();
        $result = $this->runCommand('apcu:cache:info:keys -v');
        $this->assertContains('Hits', $result);
        $this->assertContains('Key', $result);
    }
ApcuCacheInfoKeysCommandTest