MathPHP\Probability\CombinatoricsTest::testDoubleFactorialExceptionNLessThanZero PHP Method

testDoubleFactorialExceptionNLessThanZero() public method

    public function testDoubleFactorialExceptionNLessThanZero()
    {
        $this->setExpectedException('MathPHP\\Exception\\OutOfBoundsException');
        Combinatorics::doubleFactorial(-1);
    }