public function DefinitionDecoratorTest::testSetProperty in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/DefinitionDecoratorTest.php \Symfony\Component\DependencyInjection\Tests\DefinitionDecoratorTest::testSetProperty()
@dataProvider getPropertyTests
File
- vendor/
symfony/ dependency-injection/ Tests/ DefinitionDecoratorTest.php, line 29
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testSetProperty($property, $changeKey) {
$def = new DefinitionDecorator('foo');
$getter = 'get' . ucfirst($property);
$setter = 'set' . ucfirst($property);
$this
->assertNull($def
->{$getter}());
$this
->assertSame($def, $def
->{$setter}('foo'));
$this
->assertEquals('foo', $def
->{$getter}());
$this
->assertEquals(array(
$changeKey => true,
), $def
->getChanges());
}