/**
  * @test
  */
 public function getMethodReturnsFlowsMethodReflection()
 {
     $class = new \TYPO3\Flow\Reflection\ClassReflection(__CLASS__);
     $method = $class->getMethod('getMethodReturnsFlowsMethodReflection');
     $this->assertInstanceOf(\TYPO3\Flow\Reflection\MethodReflection::class, $method, 'The returned method is not of type \\TYPO3\\Flow\\Reflection\\MethodReflection.');
 }