public function XmlDumperTest::testExportParameters

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php, line 43

Class

XmlDumperTest

Namespace

Symfony\Component\DependencyInjection\Tests\Dumper

Code

public function testExportParameters() {
  $container = (include self::$fixturesPath . '//containers/container8.php');
  $dumper = new XmlDumper($container);
  $this
    ->assertXmlStringEqualsXmlFile(self::$fixturesPath . '/xml/services8.xml', $dumper
    ->dump(), '->dump() dumps parameters');
}