You are here

public function ZfExtensionManagerSfContainerTest::testPrefix in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Bridge/ZfExtensionManagerSfContainerTest.php \Drupal\Tests\Component\Bridge\ZfExtensionManagerSfContainerTest::testPrefix()

@covers ::__construct @covers ::has @covers ::get

File

core/tests/Drupal/Tests/Component/Bridge/ZfExtensionManagerSfContainerTest.php, line 54
Contains \Drupal\Tests\Component\Bridge\ZfExtensionManagerSfContainerTest.

Class

ZfExtensionManagerSfContainerTest
@coversDefaultClass \Drupal\Component\Bridge\ZfExtensionManagerSfContainer @group Bridge

Namespace

Drupal\Tests\Component\Bridge

Code

public function testPrefix() {
  $service = new \stdClass();
  $service->value = 'myvalue';
  $container = new ContainerBuilder();
  $container
    ->set('foo.bar', $service);
  $bridge = new ZfExtensionManagerSfContainer('foo.');
  $bridge
    ->setContainer($container);
  $this
    ->assertTrue($bridge
    ->has('bar'));
  $this
    ->assertFalse($bridge
    ->has('baz'));
  $this
    ->assertEquals($service, $bridge
    ->get('bar'));
}