MathPHP\Statistics\Regression\LOESSTest::testSmoothnessParameterOutOfBoundsException PHP Метод

testSmoothnessParameterOutOfBoundsException() публичный Метод

public testSmoothnessParameterOutOfBoundsException ( array $points, , )
$points array
    public function testSmoothnessParameterOutOfBoundsException(array $points, $α, $λ)
    {
        $this->setExpectedException('MathPHP\\Exception\\OutOfBoundsException');
        $loess = new LOESS($points, $α, $λ);
    }