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

getMethodReturnsFlowsMethodReflection() public method

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