How to test for static files located in the web folder in symfony with phpunit?
问题 sysinfo: PHPUnit 5.7.4 PHP 7.0.13 Symfony 3.2.1 i am trying to follow a link on a "download" page and verify the file is downloadable but when i follow the link $client->click($crawlerDownload->link()); i get a 404 . is it not possible for the symfony $client to access a static file in the webdirectory? how can i test this? the favicon test is the simplified version of the testcase. public function testPressDownload() { $client = static::createClient(); $client->followRedirects(false); /