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

getConstructorReturnsFlowsMethodReflection() public method

    public function getConstructorReturnsFlowsMethodReflection()
    {
        $class = new ClassReflection(__CLASS__);
        $constructor = $class->getConstructor();
        $this->assertInstanceOf(MethodReflection::class, $constructor, 'The returned method is not of type \\Neos\\Flow\\Reflection\\MethodReflection.');
    }