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

getPropertiesReturnsFlowsPropertyReflection() public method

    public function getPropertiesReturnsFlowsPropertyReflection()
    {
        $class = new ClassReflection(__CLASS__);
        $properties = $class->getProperties();
        $this->assertTrue(is_array($properties), 'The returned value is no array.');
        $this->assertInstanceOf(PropertyReflection::class, array_pop($properties), 'The returned properties are not of type \\Neos\\Flow\\Reflection\\PropertyReflection.');
    }