MathPHP\Statistics\AverageTest::testIdentricMeanExceptionNegativeValue PHP Method

testIdentricMeanExceptionNegativeValue() public method

    public function testIdentricMeanExceptionNegativeValue()
    {
        $this->setExpectedException('MathPHP\\Exception\\OutOfBoundsException');
        Average::identricMean(-2, 5);
    }
AverageTest