You are here

public function XmlDumperTest::testDumpDecoratedServices in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\XmlDumperTest::testDumpDecoratedServices()

@dataProvider provideDecoratedServicesData

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php, line 128

Class

XmlDumperTest

Namespace

Symfony\Component\DependencyInjection\Tests\Dumper

Code

public function testDumpDecoratedServices($expectedXmlDump, $container) {
  $dumper = new XmlDumper($container);
  $this
    ->assertEquals($expectedXmlDump, $dumper
    ->dump());
}