Commando\Test\CommandTest::testIncrementOptionMaxValue PHP Method

testIncrementOptionMaxValue() public method

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