Commando\Test\CommandTest::testIncrementOption PHP Method

testIncrementOption() public method

public testIncrementOption ( )
    public function testIncrementOption()
    {
        $tokens = array('filename', '-vvvv');
        $cmd = new Command($tokens);
        $cmd->flag('v')->aka('verbosity')->increment();
        $this->assertEquals(4, $cmd['verbosity']);
    }