MathPHP\Statistics\DescriptiveTest::testMeanAbsoluteDeviationNullWhenEmptyArray PHP Method

testMeanAbsoluteDeviationNullWhenEmptyArray() public method

    public function testMeanAbsoluteDeviationNullWhenEmptyArray()
    {
        $this->assertNull(Descriptive::meanAbsoluteDeviation(array()));
    }
DescriptiveTest