Pinq\Tests\Integration\ExpressionTrees\MagicConstantInterpreterTest::testMethod PHP Метод

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

public testMethod ( )
    public function testMethod()
    {
        $this->assertRecompilesCorrectly([$this, 'methodConstant']);
        $this->assertRecompilesCorrectly(function () {
            return [__METHOD__, __METHOD__];
        });
        $this->assertRecompilesCorrectly(__NAMESPACE__ . '\\testFuncMethodConstant');
        $this->assertRecompilesCorrectly([$this, 'methodConstantInClosure']);
    }