Neos\Flow\Tests\Unit\Reflection\PropertyReflectionTest::getValueReturnsValueOfAPublicProperty PHP Method

getValueReturnsValueOfAPublicProperty() public method

    public function getValueReturnsValueOfAPublicProperty()
    {
        $reflectionProperty = new Reflection\PropertyReflection(__CLASS__, 'publicProperty');
        $this->assertEquals('I\'m public', $reflectionProperty->getValue($this), 'ReflectionProperty->getValue($this) did not return the value of a public property.');
    }