You are here

public function DefinitionTest::testSetGetConfigurator in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

DefinitionTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

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