Expanded class hierarchy of PropertyMetadataTest
class PropertyMetadataTest extends \PHPUnit_Framework_TestCase {
const CLASSNAME = 'Symfony\\Component\\Validator\\Tests\\Fixtures\\Entity';
const PARENTCLASS = 'Symfony\\Component\\Validator\\Tests\\Fixtures\\EntityParent';
public function testInvalidPropertyName() {
$this
->setExpectedException('Symfony\\Component\\Validator\\Exception\\ValidatorException');
new PropertyMetadata(self::CLASSNAME, 'foobar');
}
public function testGetPropertyValueFromPrivateProperty() {
$entity = new Entity('foobar');
$metadata = new PropertyMetadata(self::CLASSNAME, 'internal');
$this
->assertEquals('foobar', $metadata
->getPropertyValue($entity));
}
public function testGetPropertyValueFromOverriddenPrivateProperty() {
$entity = new Entity('foobar');
$metadata = new PropertyMetadata(self::PARENTCLASS, 'data');
$this
->assertTrue($metadata
->isPublic($entity));
$this
->assertEquals('Overridden data', $metadata
->getPropertyValue($entity));
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PropertyMetadataTest:: |
constant | |||
PropertyMetadataTest:: |
constant | |||
PropertyMetadataTest:: |
public | function | ||
PropertyMetadataTest:: |
public | function | ||
PropertyMetadataTest:: |
public | function |