MathPHP\Probability\CombinatoricsTest::testCombinationsRGreaterThanNException PHP Method

testCombinationsRGreaterThanNException() public method

    public function testCombinationsRGreaterThanNException()
    {
        $this->setExpectedException('MathPHP\\Exception\\OutOfBoundsException');
        Combinatorics::combinations(3, 4, Combinatorics::REPETITION);
    }