public function DefinitionTest::testSetIsLazy

@covers Symfony\Component\DependencyInjection\Definition::setLazy @covers Symfony\Component\DependencyInjection\Definition::isLazy

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/DefinitionTest.php, line 171

Class

DefinitionTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testSetIsLazy() {
  $def = new Definition('stdClass');
  $this
    ->assertFalse($def
    ->isLazy(), '->isLazy() returns false by default');
  $this
    ->assertSame($def, $def
    ->setLazy(true), '->setLazy() implements a fluent interface');
  $this
    ->assertTrue($def
    ->isLazy(), '->isLazy() returns true if the service is lazy.');
}