CacheTool\Command\ApcKeyFetchCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( )
    public function testCommand()
    {
        $this->assertHasApc();
        $result = $this->runCommand('apc:key:fetch key -v');
        $this->assertContains('apc_fetch("key", {})', $result);
    }
ApcKeyFetchCommandTest