public function GraphvizDumperTest::testDumpWithFrozenContainer in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Dumper/GraphvizDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\GraphvizDumperTest::testDumpWithFrozenContainer()
File
- vendor/
symfony/ dependency-injection/ Tests/ Dumper/ GraphvizDumperTest.php, line 62
Class
Namespace
Symfony\Component\DependencyInjection\Tests\DumperCode
public function testDumpWithFrozenContainer() {
$container = (include self::$fixturesPath . '/containers/container13.php');
$dumper = new GraphvizDumper($container);
$this
->assertEquals(str_replace('%path%', __DIR__, file_get_contents(self::$fixturesPath . '/graphviz/services13.dot')), $dumper
->dump(), '->dump() dumps services');
}