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.');
}