CacheTool\Command\ApcKeyDeleteCommandTest::testCommand PHP Method

testCommand() public method

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