Pinq\Tests\Integration\Parsing\ReflectionTest::testInternalFunctionsProduceDifferentGlobalHashes PHP Метод

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

    public function testInternalFunctionsProduceDifferentGlobalHashes()
    {
        $reflection1 = $this->interpreter->getReflection('strlen');
        $reflection2 = $this->interpreter->getReflection('strpos');
        $this->assertNotSame($reflection1->getGlobalHash(), $reflection2->getGlobalHash());
    }