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