public function ContainerBuilderTest::testHas in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Tests/ContainerBuilderTest.php \Symfony\Component\DependencyInjection\Tests\ContainerBuilderTest::testHas()
@covers Symfony\Component\DependencyInjection\ContainerBuilder::has
File
- vendor/
symfony/ dependency-injection/ Tests/ ContainerBuilderTest.php, line 80
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testHas() {
$builder = new ContainerBuilder();
$this
->assertFalse($builder
->has('foo'), '->has() returns false if the service does not exist');
$builder
->register('foo', 'Bar\\FooClass');
$this
->assertTrue($builder
->has('foo'), '->has() returns true if a service definition exists');
$builder
->set('bar', new \stdClass());
$this
->assertTrue($builder
->has('bar'), '->has() returns true if a service exists');
}