You are here

public function ContainerBuilderTest::testHas in Zircon Profile 8

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

ContainerBuilderTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

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