CacheTool\Command\ApcCacheInfoFileCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( )
    public function testCommand()
    {
        $this->assertHasApc();
        $result = $this->runCommand('apc:cache:info:file -v');
        $this->assertContains('apc_cache_info("system")', $result);
        $this->assertContains('Hits', $result);
        $this->assertContains('Filename', $result);
    }
ApcCacheInfoFileCommandTest