Neos\Flow\Tests\Unit\Reflection\ClassReflectionTest::getMethodsReturnsArrayWithNumericIndex PHP Method

getMethodsReturnsArrayWithNumericIndex() public method

    public function getMethodsReturnsArrayWithNumericIndex()
    {
        $class = new ClassReflection(__CLASS__);
        $methods = $class->getMethods();
        foreach (array_keys($methods) as $key) {
            $this->assertInternalType('integer', $key, 'The index was not an integer.');
        }
    }