You are here

public function GraphvizDumperTest::testLegacyDump in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/Dumper/GraphvizDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\GraphvizDumperTest::testLegacyDump()

@group legacy

File

vendor/symfony/dependency-injection/Tests/Dumper/GraphvizDumperTest.php, line 29

Class

GraphvizDumperTest

Namespace

Symfony\Component\DependencyInjection\Tests\Dumper

Code

public function testLegacyDump() {
  $container = (include self::$fixturesPath . '/containers/legacy-container9.php');
  $dumper = new GraphvizDumper($container);
  $this
    ->assertEquals(str_replace('%path%', __DIR__, file_get_contents(self::$fixturesPath . '/graphviz/legacy-services9.dot')), $dumper
    ->dump(), '->dump() dumps services');
}