You are here

public function Twig_Tests_Profiler_Dumper_HtmlTest::testDump in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/HtmlTest.php \Twig_Tests_Profiler_Dumper_HtmlTest::testDump()

File

vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/HtmlTest.php, line 14

Class

Twig_Tests_Profiler_Dumper_HtmlTest

Code

public function testDump() {
  $dumper = new Twig_Profiler_Dumper_Html();
  $this
    ->assertStringMatchesFormat(<<<EOF
<pre>main <span style="color: #d44">%d.%dms/%d%</span>
└ <span style="background-color: #ffd">index.twig</span> <span style="color: #d44">%d.%dms/%d%</span>
  └ embedded.twig::block(<span style="background-color: #dfd">body</span>)
  └ <span style="background-color: #ffd">embedded.twig</span>
  │ └ <span style="background-color: #ffd">included.twig</span>
  └ index.twig::macro(<span style="background-color: #ddf">foo</span>)
  └ <span style="background-color: #ffd">embedded.twig</span>
    └ <span style="background-color: #ffd">included.twig</span>
</pre>
EOF
, $dumper
    ->dump($this
    ->getProfile()));
}