MathPHP\Statistics\Regression\TheilSenTest::testConstructor PHP Method

testConstructor() public method

public testConstructor ( )
    public function testConstructor()
    {
        $points = [[1, 2], [2, 3], [4, 5], [5, 7], [6, 8]];
        $regression = new TheilSen($points);
        $this->assertInstanceOf('MathPHP\\Statistics\\Regression\\Regression', $regression);
        $this->assertInstanceOf('MathPHP\\Statistics\\Regression\\TheilSen', $regression);
    }