MathPHP\NumericalAnalysis\Interpolation\InterpolationTest::testInstantiateAbstractClassException PHP 메소드

testInstantiateAbstractClassException() 공개 메소드

    public function testInstantiateAbstractClassException()
    {
        // Instantiating Interpolation (an abstract class)
        $this->setExpectedException('\\Error');
        new Interpolation();
    }