public function DefinitionTest::testSetGetConfigurator in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/DefinitionTest.php \Symfony\Component\DependencyInjection\Tests\DefinitionTest::testSetGetConfigurator()
@covers Symfony\Component\DependencyInjection\Definition::setConfigurator @covers Symfony\Component\DependencyInjection\Definition::getConfigurator
File
- vendor/
symfony/ dependency-injection/ Tests/ DefinitionTest.php, line 207
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testSetGetConfigurator() {
$def = new Definition('stdClass');
$this
->assertSame($def, $def
->setConfigurator('foo'), '->setConfigurator() implements a fluent interface');
$this
->assertEquals('foo', $def
->getConfigurator(), '->getConfigurator() returns the configurator');
}