| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class ViewsControllerTest extends AbstractWebTestCase { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Test Resources/views/assets/_javascripts.html.twig |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function testAssetsJavascriptsAction(): void { |
||
| 30 | |||
| 31 | $client = $this->client; |
||
| 32 | |||
| 33 | $client->request("GET", "/assets/javascripts"); |
||
| 34 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
| 35 | $this->assertEquals("text/html; charset=UTF-8", $client->getResponse()->headers->get("Content-Type")); |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Test Resources/views/assets/_stylesheets.html.twig |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function testAssetsStylesheetsAction(): void { |
||
| 50 | } |
||
| 51 | } |
||
| 52 |