CacheTool\Command\ApcuKeyStoreCommandTest::testCommand PHP Method

testCommand() public method

public testCommand ( )
    public function testCommand()
    {
        $this->assertHasApcu();
        $result = $this->runCommand('apcu:key:store key value 3600 -v');
        $this->assertContains('apcu_store("key", "value", "3600")', $result);
    }
ApcuKeyStoreCommandTest