| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 20 | public function testItTestIfHeadersAreProperlySet(): void  | 
            ||
| 21 |     { | 
            ||
| 22 | $client = self::createClient();  | 
            ||
| 23 | |||
| 24 |         $crawler = $client->request('GET', '/'); | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 25 | |||
| 26 | $this->assertResponseIsSuccessful();  | 
            ||
| 27 |         $this->assertResponseHeaderSame('Permissions-Policy', 'interest-cohort=()'); | 
            ||
| 28 | |||
| 29 |         $crawler = $client->request('GET', '/', [], [], [], json_encode(['Permissions-Policy' => 'foo'])); | 
            ||
| 30 | |||
| 31 |         $this->assertResponseHeaderSame('Permissions-Policy', 'foo'); | 
            ||
| 32 | }  | 
            ||
| 34 |