MathPHP\Probability\Distribution\Table\ChiSquaredlTest::testChiSquaredException PHP Method

testChiSquaredException() public method

    public function testChiSquaredException()
    {
        $this->setExpectedException('MathPHP\\Exception\\BadDataException');
        $df = 88474;
        $p = 0.44;
        ChiSquared::getChiSquareValue($df, $p);
    }