| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function testAssetsStylesheetsAction(): void { |
||
| 44 | |||
| 45 | $client = $this->client; |
||
| 46 | |||
| 47 | $client->request("GET", "/assets/stylesheets"); |
||
| 48 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
| 49 | $this->assertEquals("text/html; charset=UTF-8", $client->getResponse()->headers->get("Content-Type")); |
||
| 50 | } |
||
| 52 |