Neos\Flow\Tests\Unit\Reflection\ClassReflectionTest::getPropertiesReturnsFlowsPropertyReflection PHP 메소드

getPropertiesReturnsFlowsPropertyReflection() 공개 메소드

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