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