Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function testShowProfiler() |
||
10 | { |
||
11 | $client = static::createClient(); |
||
12 | |||
13 | //Browse any page to get a profile |
||
14 | $client->request('GET', '/'); |
||
15 | |||
16 | $client->request('GET', '/_profiler/latest?panel=httplug'); |
||
17 | $content = $client->getResponse()->getContent(); |
||
18 | $this->assertTrue(false !== strpos($content, '<h2>HTTPlug</h2>')); |
||
19 | } |
||
20 | } |
||
21 |