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