function ZfExtensionManagerSfContainerTest::testPrefix
Same name in this branch
- 9 core/modules/aggregator/tests/src/Unit/ZfExtensionManagerSfContainerTest.php \Drupal\Tests\aggregator\Unit\ZfExtensionManagerSfContainerTest::testPrefix()
Same name in other branches
- 8.9.x 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 86
Class
- ZfExtensionManagerSfContainerTest
- @coversDefaultClass \Drupal\Component\Bridge\ZfExtensionManagerSfContainer @group Bridge @group legacy
Namespace
Drupal\Tests\Component\BridgeCode
public function testPrefix() {
$service = new \stdClass();
$service->value = 'my_value';
$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'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.