我正在尝试运行一个单元测试来检查资产是否正确安装。我只是向现有文件发出请求并检查是否没有错误:
$client = static::createClient();
$client->request('GET', '/bundles/mybundle/css/bg.css');
$this->assertFalse($client->getResponse()->isNotFound(), "Assets seem to not be installed");
不幸的是,在检查了 Response 实例之后,它总是试图通过路由到达某种控制器:
找不到“GET /bundles/mybundle/css/bg.css”的路由
有没有办法在不通过路由系统的情况下在这里发出纯请求?