public function XmlFileLoaderTest::testXmlNamespaces in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Loader/XmlFileLoaderTest.php \Symfony\Component\DependencyInjection\Tests\Loader\XmlFileLoaderTest::testXmlNamespaces()
File
- vendor/
symfony/ dependency-injection/ Tests/ Loader/ XmlFileLoaderTest.php, line 446
Class
Namespace
Symfony\Component\DependencyInjection\Tests\LoaderCode
public function testXmlNamespaces() {
$container = new ContainerBuilder();
$loader = new XmlFileLoader($container, new FileLocator(self::$fixturesPath . '/xml'));
$loader
->load('namespaces.xml');
$services = $container
->getDefinitions();
$this
->assertTrue(isset($services['foo']), '->load() parses <srv:service> elements');
$this
->assertEquals(1, count($services['foo']
->getTag('foo.tag')), '->load parses <srv:tag> elements');
$this
->assertEquals(array(
array(
'setBar',
array(
'foo',
),
),
), $services['foo']
->getMethodCalls(), '->load() parses the <srv:call> tag');
}