CacheTool\Command\ApcuKeyDeleteCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( )
    public function testCommand()
    {
        $this->assertHasApcu();
        $result = $this->runCommand('apcu:key:delete key -v');
        $this->assertContains('apcu_delete("key")', $result);
    }
ApcuKeyDeleteCommandTest