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

getMethodsReturnsFlowsMethodReflection() public method

    public function getMethodsReturnsFlowsMethodReflection()
    {
        $class = new ClassReflection(__CLASS__);
        $methods = $class->getMethods();
        foreach ($methods as $method) {
            $this->assertInstanceOf(MethodReflection::class, $method, 'The returned methods are not of type \\Neos\\Flow\\Reflection\\MethodReflection.');
        }
    }