You are here

public function DefinitionTest::testSetIsSynthetic in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/DefinitionTest.php \Symfony\Component\DependencyInjection\Tests\DefinitionTest::testSetIsSynthetic()

@covers Symfony\Component\DependencyInjection\Definition::setSynthetic @covers Symfony\Component\DependencyInjection\Definition::isSynthetic

File

vendor/symfony/dependency-injection/Tests/DefinitionTest.php, line 158

Class

DefinitionTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

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