TextTest.php in Zircon Profile 8
File
vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/TextTest.php
View source
<?php
class Twig_Tests_Profiler_Dumper_TextTest extends Twig_Tests_Profiler_Dumper_AbstractTest {
public function testDump() {
$dumper = new Twig_Profiler_Dumper_Text();
$this
->assertStringMatchesFormat(<<<EOF
main %d.%dms/%d%
└ index.twig %d.%dms/%d%
└ embedded.twig::block(body)
└ embedded.twig
│ └ included.twig
└ index.twig::macro(foo)
└ embedded.twig
└ included.twig
EOF
, $dumper
->dump($this
->getProfile()));
}
}