public function DefinitionTest::testSetIsSynthetic 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::testSetIsSynthetic()
@covers Symfony\Component\DependencyInjection\Definition::setSynthetic @covers Symfony\Component\DependencyInjection\Definition::isSynthetic
File
- vendor/
symfony/ dependency-injection/ Tests/ DefinitionTest.php, line 158
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
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.');
}