You are here

public function ContainerTest::testHas in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testHas()

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

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerTest.php, line 286

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');
  $this
    ->assertTrue($sc
    ->has('foo\\baz'), '->has() returns true if a get*Method() is defined');
}