public function ContainerTest::testHas

@covers Symfony\Component\DependencyInjection\Container::has

File

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

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testHas() {
  $sc = new ProjectServiceContainer();
  $sc
    ->set('foo', new \stdClass());
  $this
    ->assertFalse($sc
    ->has('foo1'), '->has() returns false if the service does not exist');
  $this
    ->assertTrue($sc
    ->has('foo'), '->has() returns true if the service exists');
  $this
    ->assertTrue($sc
    ->has('bar'), '->has() returns true if a get*Method() is defined');
  $this
    ->assertTrue($sc
    ->has('foo_bar'), '->has() returns true if a get*Method() is defined');
  $this
    ->assertTrue($sc
    ->has('foo.baz'), '->has() returns true if a get*Method() is defined');
}